-
Notifications
You must be signed in to change notification settings - Fork 88
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
Changes to RRFS 3- and 13-km domains, setup.sh script bug fixes, make_ics task modification, and tweaks to stochastic physics namelist settings #721
Changes from all commits
b4e0619
6f88d01
035e7c8
fa4317f
cc0e8a4
ace5ef8
1c52bbd
9ca8bd9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# | ||
# TEST PURPOSE/DESCRIPTION: | ||
# ------------------------ | ||
# | ||
# This test is to ensure that the workflow running in community mode | ||
# completes successfully on the RRFS_NA_13km grid using the RRFS_v1beta | ||
# physics suite with ICs and LBCs derived from the FV3GFS. | ||
# | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just wondering how much of this resource tweaking is needed for the 13km vs. 3km grid. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I reduced the NNODES for post from 8 to 6, but didn't touch the chgres_cube resources based on what was in the 3-km domain WE2E. Is that what you're referring to? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, I was just wondering which ones you really need vs. just using the defaults. |
||
# Note that this test also sets various resource parameters for several | ||
# of the rocoto tasks in order to more efficiently run the code on this | ||
# (very large) grid. | ||
# | ||
|
||
RUN_ENVIR="community" | ||
PREEXISTING_DIR_METHOD="rename" | ||
|
||
PREDEF_GRID_NAME="RRFS_NA_13km" | ||
CCPP_PHYS_SUITE="FV3_RRFS_v1beta" | ||
|
||
EXTRN_MDL_NAME_ICS="FV3GFS" | ||
EXTRN_MDL_NAME_LBCS="FV3GFS" | ||
USE_USER_STAGED_EXTRN_FILES="TRUE" | ||
|
||
DATE_FIRST_CYCL="20190701" | ||
DATE_LAST_CYCL="20190701" | ||
CYCL_HRS=( "00" ) | ||
|
||
FCST_LEN_HRS="6" | ||
LBC_SPEC_INTVL_HRS="6" | ||
|
||
######################################################################### | ||
# The following code/namelist/workflow setting changes are necessary to # | ||
# run/optimize end-to-end experiments using the 3-km NA grid # | ||
######################################################################### | ||
|
||
# The model should be built in 32-bit mode (64-bit will result in much | ||
# longer run times. | ||
|
||
# Use k_split=2 and n_split=5, the previous namelist values (k_split=4 | ||
# and n_split=5) will result in significantly longer run times. | ||
|
||
NNODES_MAKE_ICS="12" | ||
NNODES_MAKE_LBCS="12" | ||
PPN_MAKE_ICS="4" | ||
PPN_MAKE_LBCS="4" | ||
WTIME_MAKE_LBCS="01:00:00" | ||
|
||
NNODES_RUN_POST="6" | ||
PPN_RUN_POST="12" | ||
|
||
OMP_STACKSIZE_MAKE_ICS="2048m" | ||
OMP_STACKSIZE_RUN_FCST="2048m" | ||
|
||
############################################################################### |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the comments, 3km --> 13km and v1alpha --> v1beta.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, fixed!