Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce FHMAX_ENKF_GFS to extending ensemble forecast capabilities #1122

Merged
merged 6 commits into from
Nov 17, 2022
Merged
Show file tree
Hide file tree
Changes from 3 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
6 changes: 6 additions & 0 deletions scripts/exgdas_enkf_fcst.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,12 @@ export FHOUT=${FHOUT_ENKF:-3}
# model_configure
export DELTIM=${DELTIM_ENKF:-${DELTIM:-225}}
export FHMAX=${FHMAX_ENKF:-9}
if [[ $EUPD_CYC == "BOTH" ]]; then
if [[ $CDUMP == "gfs" ]]; then
export FHMAXF=$FHMAX_ENKF_GFS
fi
fi
aerorahul marked this conversation as resolved.
Show resolved Hide resolved

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

# gfs_physics_nml
Expand Down
5 changes: 5 additions & 0 deletions workflow/rocoto/workflow_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1192,8 +1192,13 @@ def echgres(self):
def epos(self):

def _get_eposgroups(epos):
eupd_cyc=self._base['EUPD_CYC'].lower()

fhmin = epos['FHMIN_ENKF']
fhmax = epos['FHMAX_ENKF']
if eupd_cyc == "both":
if self.cdump == "gfs":
fhmax = epos['FHMAX_ENKF_GFS']
aerorahul marked this conversation as resolved.
Show resolved Hide resolved
fhout = epos['FHOUT_ENKF']
fhrs = range(fhmin, fhmax + fhout, fhout)

Expand Down