Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
1 change: 1 addition & 0 deletions parm/config/config.base.emc.dyn
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ export lwrite4danl=".true."
if [ $DOHYBVAR = "YES" ]; then
export FHMIN_ENKF=3
export FHMAX_ENKF=9
export FHMAX_ENKF_GFS=120
if [ $l4densvar = ".true." ]; then
export FHOUT=1
export FHOUT_ENKF=1
Expand Down
4 changes: 4 additions & 0 deletions scripts/exgdas_enkf_fcst.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ export FHOUT=${FHOUT_ENKF:-3}
# model_configure
export DELTIM=${DELTIM_ENKF:-${DELTIM:-225}}
export FHMAX=${FHMAX_ENKF:-9}
if [[ $CDUMP == "gfs" ]]; then
export FHMAXF=$FHMAX_ENKF_GFS
Comment thread
aerorahul marked this conversation as resolved.
Outdated
fi

export restart_interval=${restart_interval_ENKF:-${restart_interval:-6}}

# gfs_physics_nml
Expand Down
2 changes: 2 additions & 0 deletions workflow/rocoto/workflow_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1194,6 +1194,8 @@ def epos(self):
def _get_eposgroups(epos):
fhmin = epos['FHMIN_ENKF']
fhmax = epos['FHMAX_ENKF']
if self.cdump == "gfs":
fhmax = epos['FHMAX_ENKF_GFS']
fhout = epos['FHOUT_ENKF']
fhrs = range(fhmin, fhmax + fhout, fhout)

Expand Down