Skip to content

Commit b6e4801

Browse files
committed
set fcst_dt to 20 for conus3km and south3.5km, and change FCST_SUBSteps to FCST_SUBSTEPS for reading FCST_SUBSTEPS setting in config.meshdep correctly
1 parent d2ec6cd commit b6e4801

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

workflow/config_resources/config.meshdep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ elif [[ ${MESH_NAME} == "conus12km" ]]; then
5656
export NONVAR_SEARCH_RAD=4
5757

5858
elif [[ ${MESH_NAME} == "conus3km" ]]; then
59-
export FCST_DT=15
59+
export FCST_DT=20
6060
export FCST_SUBSTEPS=4
6161
export FCST_RADT=15
6262
export UPP_DOMAIN="conus."
@@ -83,7 +83,7 @@ elif [[ ${MESH_NAME} == "conus3km" ]]; then
8383
export NONVAR_SEARCH_RAD=1
8484

8585
elif [[ ${MESH_NAME} == "south3.5km" ]]; then
86-
export FCST_DT=25
86+
export FCST_DT=20
8787
export FCST_SUBSTEPS=4
8888
export FCST_RADT=15
8989
export UPP_DOMAIN="subconus."

workflow/rocoto_funcs/fcst.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def fcst(xmlFile, expdir, do_ensemble=False, do_spinup=False):
3232
'PHYSICS_SUITE': f'{physics_suite}',
3333
'FCST_LEN_HRS_CYCLES': f'{fcst_len_hrs_cycles}',
3434
'FCST_DT': os.getenv('FCST_DT', 'FCST_DT_not_defined'),
35-
'FCST_SUBSteps': os.getenv('FCST_SUBSTEPS', 'FCST_SUBSTEPS_not_defined'),
35+
'FCST_SUBSTEPS': os.getenv('FCST_SUBSTEPS', 'FCST_SUBSTEPS_not_defined'),
3636
'FCST_RADT': os.getenv('FCST_RADT', 'FCST_RADT_not_defined'),
3737
}
3838
if os.getenv('FCST_CONVECTION_SCHEME', 'FALSE').upper() == 'TRUE':

0 commit comments

Comments
 (0)