ioda

Structured YAML to run IODA is validated by JSON Schema and requires the ioda: block, described below. If ioda is to be run via a batch system, the platform: block, described here, is also required.

  • This driver receives a cycle argument, which it makes available as a Python datetime object to Jinja2 when realizing its input config. This supports specification of cycle-specific values. For example, the key-value pair

    gfs.t{{ cycle.strftime('%H') }}z.atmanl.nc: /some/path/{{ cycle.strftime('%Y%m%d%H') }}/gfs.t{{ cycle.strftime('%H') }}z.atmanl.nc
    

    would be rendered as

    gfs.t18z.atmanl.nc: /some/path/2024021218/gfs.t18z.atmanl.nc
    

    for cycle 2024-02-12T18.

Here is a prototype UW YAML ioda: block, explained in detail below:

ioda:
  configuration_file:
    base_file: path/to/config.yaml
    update_values:
      baz: qux
  execution:
    batchargs:
      nodes: 1
      stdout: path/to/runscript.out
      walltime: "00:05:00"
    envcmds:
      - module load some-module
      - module load ioda-module
    executable: /path/to/a/ioda/exe
  files_to_copy:
    d/f2: /path/to/f2
    f1: /path/to/f1
  files_to_link:
    f3: /path/to/f3
    f4: d/f4
  rundir: /path/to/run/dir
platform:
  account: me
  scheduler: slurm

UW YAML for the ioda: Block

execution:

See this page for details.

configuration_file:

Supports base_file: and update_values: blocks (see Updating Values for details).

files_to_copy:

See this page for details.

rundir:

The path to the run directory.