rewind post (multiple forecst hours) in rocoto workflow #995
-
I conducted a 72-hour UFS exp over the NE US domain at Derecho. The plot_allvars failed (the run directory is /glade/work/clu/ufs/expt_dirs/RRFS_neus_12km_gfsv16). The issue, I believe, is related to POST_OUTPUT_DOMAIN_NAME in this experiment is different from these in COMOUT_REF. The config.yaml is copied to /glade/work/clu/ufs/ufs-srweather-app/ush/SandBox/config.yaml_smoke_gfsv16. Since it's not feasible to manually re-run post for all 72 forecast hours, I modify config.yaml in $USHDIR (/glade/work/clu/ufs/ufs-srweather-app/ush) and only include post and plot in rocoto: tasks: taskgroups. When I run generate_FV3LAM_wflow.py, I encounter error msg: Could you please advise how to re-run post and plot with revised POST_OUTPUT_DOMAIN_NAME and what steps in my approach can be corrected. Many thanks. -Sarah |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
BTW - when I run generate_FV3LAM_wflow.py, the run directory has been renamed |
Beta Was this translation helpful? Give feedback.
-
Hi @SarahLu-NOAA , It sounds like your experiment initially ran the post tasks without problems, and the main issue is the path in Also, keep in mind, if you just want plots for your single experiment, you don't need to set Hope this helps! -- Gillian |
Beta Was this translation helpful? Give feedback.
-
@gspetro-NOAA, Many thanks!! While COMOUT_REF is correct, the plot_allvars failed because my experiment produces files like srw.t00z.prslev.f060.rrfs_neus_12km_gfsv17p8.grib2 but the REF experiment (specified in COMOUT_REF) produces files like I have the impression that the new experiment and reference experiment need to have identical POST_OUTPUT_DOMAIN_NAME. Could you please confirm or correct my understanding. Thanks -Sarah |
Beta Was this translation helpful? Give feedback.
-
@SarahLu-NOAA I agree with @gspetro-NOAA that it is best not to manually modify var_defns etc and instead re-run everything from the start. Unfortunately, I don't have access to Cheynenne to look into your runs. One thing is that changing
If the |
Beta Was this translation helpful? Give feedback.
@SarahLu-NOAA I agree with @gspetro-NOAA that it is best not to manually modify var_defns etc and instead re-run everything from the start. Unfortunately, I don't have access to Cheynenne to look into your runs.
One thing is that changing
POST_OUTPUT_DOMAIN_NAME
may not have the desired effect. This is because in the plotting scripts, the domain name for the latter is set withPREDEF_GRID_NAME
if it is defined, or the experiment subdirectory name otherwise.Here is the definition in
JREGIONAL_PLOT_ALLVARS
,If the
POST_OUTPUT_DOMAIN_NAME
does not match any of these, issues due to inconsistent post file names may arise.I think the scripts can be…