Skip to content

Commit

Permalink
Turn IAU off during staging job for cold start experiments (NOAA-EMC#…
Browse files Browse the repository at this point in the history
…3215)

Resolve a bug related to IAU when cold-starting an experiment.

The model start time for non-atmos ICs were incorrectly being reduced by 3hrs
for cold-started experiments. While a user may want IAU on (`DOIAU=YES`), the
IAU switch should be set to "NO" for the staging job when it is cold-started.

Resolves NOAA-EMC#2890
Resolves NOAA-EMC#2865
  • Loading branch information
KateFriedman-NOAA authored Jan 14, 2025
1 parent 26fb850 commit 53ed76e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions parm/config/gefs/config.stage_ic
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ export STAGE_IC_YAML_TMPL="${PARMgfs}/stage/master_gefs.yaml.j2"

source "${HOMEgfs}/versions/ic.ver"

if [[ ${EXP_WARM_START} = ".false." ]] ; then
export DOIAU="NO" # Turn off for staging
fi

# Set ICSDIR (if not defined)
if [[ -z "${ICSDIR}" ]] ; then

Expand Down
4 changes: 4 additions & 0 deletions parm/config/gfs/config.stage_ic
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ export STAGE_IC_YAML_TMPL="${PARMgfs}/stage/master_gfs.yaml.j2"

source "${HOMEgfs}/versions/ic.ver"

if [[ ${EXP_WARM_START} = ".false." ]] ; then
export DOIAU="NO" # Turn off for staging
fi

# Set ICSDIR (if not defined)
if [[ -z "${ICSDIR}" ]] ; then

Expand Down

0 comments on commit 53ed76e

Please sign in to comment.