Skip to content
Merged
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions ush/generate_FV3LAM_wflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -657,6 +657,22 @@ Please change one or more of these parameters or provide a value for lsoil

fi
#
# Set magnitude of stochastic ad-hoc schemes to -999.0 if they are not
Comment thread
gsketefian marked this conversation as resolved.
Outdated
# being used. This is required at the moment, since "do_shum/sppt/skeb"
# does not override the use of the scheme unless the magnitude is also
# specifically set to -999.0. If all "do_shum/sppt/skeb" are set to
# "false," then none will run, regardless of the magnitude values.
#
if [ "${DO_SHUM}" = "false" ]; then
SHUM_MAG=-999.0
fi
if [ "${DO_SKEB}" = "false" ]; then
SKEB_MAG=-999.0
fi
if [ "${DO_SPPT}" = "false" ]; then
SPPT_MAG=-999.0
fi
#
# Create a multiline variable that consists of a yaml-compliant string
# specifying the values that the namelist variables that are physics-
# suite-independent need to be set to. Below, this variable will be
Expand Down