Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titlesource_uncertainty.yaml
mw:
    distribution: uniform
    halfrange: 0.05
hf:
    sdrop: 
        mean: 50
        halfrange: 5
        distribution: uniform
    rvfac: 
        mean: 0.8
        std_dev: 0.01
        distribution: normal
    rvfac_shallow:
        mean: 0.7
        distribution: none
bb:
    fmin: 
        mean: 0.2
        distribution: uniform_relative
        scalefactor: 0.05
emod3d:
    fmin:
        mean: 0.01
        std_dev: 0.001
        distribution: normal

Currently available distributions

Distribution nameDistribution variable
noneN/A
uniformhalf_range
normalstd_dev
uniform_relativescale_factor
log_normalstd_dev

A note on emod3d

Any variable found in the e3d.par file may be placed in the emod3d section of source_uncertainty.yaml, and will be carried over. Any non numeric entries must have the distribution 'none'.

Internal changes

In order to simplify the implementation of this, we have chosen to have every parameter added to the slurm script and passed as an argument to the simulation script, which will then discard any parameters it does not recognize.

...