Skip to content
Merged
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
6 changes: 5 additions & 1 deletion dev/parm/config/gfs/config.base.j2
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,11 @@ aero_fcst_runs="gdas" # When to run aerosol forecast: gdas, gfs, or both
aero_anl_runs="gdas gfs" # When to run aerosol analysis: gdas, gfs, or both
export DO_AERO_FCST="NO"
export DO_AERO_ANL="NO"
export DOBNDPNT_WAVE="YES" # Option to create point outputs for downstream boundary points
if [[ "${RUN}" == "gfs" ]] ; then
export DOBNDPNT_WAVE="YES" # Create point outputs for downstream boundary points
else
export DOBNDPNT_WAVE="NO"
fi
export FRAC_GRID=".true."
export DO_NEST="NO" # Whether to run a global-nested domain
if [[ "${DO_NEST:-NO}" == "YES" ]] ; then
Expand Down