-
Notifications
You must be signed in to change notification settings - Fork 168
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
Use stochastic restart patterns on rerun #3077
base: develop
Are you sure you want to change the base?
Use stochastic restart patterns on rerun #3077
Conversation
The stochastic pattern restart files were not being copied into the input directory when restarting the model after a segment/failure. These files are now copied in. Additional changes appear to be needed for them to be used by UFS. The files are NOT copied in for non-rerun warm starts. Refs NOAA-EMC#2937
Adds the namelist flag so the stochastic pattern restart files get read when doing a RERUN. Refs NOAA-EMC#2937
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.
looks good to me. No comments.
Please invite review from @pjpegion @NeilBarton-NOAA
Experiment C96_atm3DVar FAILED on Hera in Build# 1 in |
Experiment C48mx500_3DVarAOWCDA FAILED on Hera in Build# 1 with error logs:
Follow link here to view the contents of the above file(s): (link) |
Experiment C48mx500_3DVarAOWCDA FAILED on Hera in Build# 1 in |
Experiment C96C48_ufs_hybatmDA FAILED on Hera in Build# 1 with error logs:
Follow link here to view the contents of the above file(s): (link) |
Experiment C96C48_hybatmDA FAILED on Hera in Build# 1 with error logs:
Follow link here to view the contents of the above file(s): (link) |
Experiment C96C48_ufs_hybatmDA FAILED on Hera in Build# 1 in |
Experiment C96C48_hybatmaerosnowDA FAILED on Hera in Build# 1 with error logs:
Follow link here to view the contents of the above file(s): (link) |
Experiment C96C48_hybatmDA FAILED on Hera in Build# 1 in |
Experiment C96C48_hybatmaerosnowDA FAILED on Hera in Build# 1 in |
Experiment C48_S2SWA_gefs FAILED on Hera in Build# 1 with error logs:
Follow link here to view the contents of the above file(s): (link) |
Experiment C48_S2SWA_gefs FAILED on Hera in Build# 1 in |
@@ -47,7 +47,19 @@ FV3_postdet() { | |||
|| ( echo "FATAL ERROR: Unable to copy FV3 IC, ABORT!"; exit 1 ) | |||
done | |||
|
|||
if [[ "${RERUN}" != "YES" ]]; then | |||
if [[ "${RERUN}" == "YES" ]]; then |
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.
@bingfu-NOAA @EricSinsky-NOAA Is there a time that we want to start the model with these files? i.e., use them in more ways than a RERUN?
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.
For 00Z, we will stop at 16-day forecast, then warm start the model to run 16-48 days forecast segment. We will need those files at that time besides a RERUN.
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.
Subsequent segments count as RERUNs inside the system.
CI Failed on Hera in Build# 1
|
export DO_SKEB="NO" | ||
export DO_SHUM="NO" | ||
export DO_LAND_PERT="NO" | ||
export DO_CA="NO" |
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.
is this config file being used by mem000 in ensemble?, if so, then DO_CA should be YES.
export DO_SKEB="NO" | ||
export DO_SHUM="NO" | ||
export DO_LAND_PERT="NO" | ||
export DO_CA="NO" |
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.
GFS is using CA, so DO_CA should be YES.
Description
The stochastic pattern restart files were not being copied into the input directory when restarting the model after a segment/failure. These files are now copied in and the stochini flag set to
.true.
in the namelist on a rerun.The files are NOT copied in for non-rerun warm starts.
Also removes the restriction that stochastic physics cannot be run on member 0, as this is desired down the line. Additional settings are added to the fcst and efcs configs to retain the current behavior.
Resolves #2937
Type of change
Change characteristics
How has this been tested?
Multi-segment test on Hercules
Checklist