make_solo_mosaic

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

Documentation for the UFS Utils make_solo_mosaic program is here.

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

make_solo_mosaic:
  config:
    dir: /path/to/input
    num_tiles: 1
    mosaic_name: ocean_mosaic
    periodx: 360
    periody: 360
    tile_file: C403_grid.tile7.halo6.nc
  execution:
    batchargs:
      cores: 1
      walltime: "00:01:00"
    executable: /path/to/make_solo_mosaic.exe
  run_dir: /path/to/rundir
platform:
  account: me
  scheduler: slurm

UW YAML for the make_solo_mosaic: Block

config:

Describes the required parameters to run a make_solo_mosaic configuration.

dir:

The path to the directory that contains the tile grid files.

mosaic_name:

The optional name of the output file.

num_tiles:

Number of tiles in the mosaic.

periodx:

The period in the x-direction of the mosaic.

periody:

The period in the y-direction of the mosaic.

tile_file:

The grid file name of all of the tiles in the mosaic.

execution:

See here for details.

run_dir:

The path to the run directory.