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

Change aersol-aware Thompson timestep dt_inner=75 #41

Merged
merged 3 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
22 changes: 12 additions & 10 deletions parm/config/gfs/config.fcst
Original file line number Diff line number Diff line change
Expand Up @@ -208,25 +208,27 @@ case ${imp_physics} in
export ncld=2
export nwat=6

export cal_pre=".false."
export random_clds=".false."
export effr_in=".true."
export lradar=".true."
export ttendlim="-999"
export sedi_semi=.true.
export decfl=10

if [[ "$CCPP_SUITE" == "FV3_GFS_v17_p8_ugwpv1_mynn" || "$CCPP_SUITE" == "FV3_GFS_v17_p8_mynn" || "$CCPP_SUITE" == "FV3_GFS_v17_p8_c3_mynn" ||
"$CCPP_SUITE" == "FV3_GFS_v17_p8_thompson" ]] ; then
#JKH keep dt_inner $DELTIM/2 (75) if running aerosol-aware Thompson
export dt_inner=$((DELTIM/2))
export ltaerosol=".true."
export FIELD_TABLE="$HOMEgfs/parm/ufs/fv3/field_table_thompson_aero_tke${tbp}"
else
export dt_inner=$((DELTIM/2))
if [[ "${sedi_semi}" == .true. ]]; then export dt_inner=${DELTIM} ; fi
export ltaerosol=".false."
export FIELD_TABLE="${HOMEgfs}/parm/ufs/fv3/field_table_thompson_noaero_tke${tbp}"
fi

export cal_pre=".false."
export random_clds=".false."
export effr_in=".true."
export lradar=".true."
export ttendlim="-999"
export dt_inner=$((DELTIM/2))
export sedi_semi=.true.
if [[ "${sedi_semi}" == .true. ]]; then export dt_inner=${DELTIM} ; fi
export decfl=10

export hord_mt_nh_nonmono=5
export hord_xx_nh_nonmono=5
export vtdm4_nh_nonmono=0.02
Expand Down
4 changes: 2 additions & 2 deletions workflow/hosts/hera_gsl_rt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ PACKAGEROOT: '/scratch1/NCEPDEV/global/glopara/nwpara'
COMROOT: '/scratch1/NCEPDEV/global/glopara/com'
COMINsyn: '${COMROOT}/gfs/prod/syndat'
HOMEDIR: '/scratch1/BMC/gsd-fv3/NCEPDEV/global/${USER}'
STMP: '/scratch1/BMC/gsd-fv3/rtruns/UFS-CAMsuite/FV3GFSrun/'
PTMP: '/scratch1/BMC/gsd-fv3/rtruns/UFS-CAMsuite/FV3GFSrun/'
STMP: '${HOMEgfs}/FV3GFSrun/'
PTMP: '${HOMEgfs}/FV3GFSrun/'
NOSCRUB: $HOMEDIR
ACCOUNT: gsd-fv3
SCHEDULER: slurm
Expand Down
Loading