forked from NOAA-GSL/UPP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RRFS_B ensemble retro (NOAA-EMC#447) (NOAA-EMC#449)
* Update scripts for running ensemble retros on Hera. * changes for running RRFSE retro * Update retro data path on Jet * Use spinup cycles for ensemble initialization * Update JREGIONAL_RUN_FCST * Update JREGIONAL_RUN_PREPSTART * Update JREGIONAL_SAVE_RESTART * Updating config.sh for CONUS_13km * Update model_configure to have different output frequency * Updating config.sh for CONUS_3km Co-authored-by: Ming.Hu <[email protected]> Co-authored-by: Ming.Hu <[email protected]>
- Loading branch information
1 parent
b7387a8
commit 184d5dc
Showing
5 changed files
with
53 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1185,7 +1185,8 @@ MODULES_RUN_TASK_FP script. | |
<streq><left>{{ h }}</left><right><cyclestr>@H</cyclestr></right></streq> | ||
{%- endfor %} | ||
</or> | ||
<or> | ||
<or> | ||
{%- if do_spinup %} | ||
<and> | ||
<or> | ||
{%- for h in cycl_hrs_prodstart_ens %} | ||
|
@@ -1206,6 +1207,13 @@ MODULES_RUN_TASK_FP script. | |
<datadep age="00:00:01:00"><cyclestr offset="-{{ da_cycle_interval_hrs }}:00:00">&RRFSE_FG_ROOT;/@Y@m@d@H/mem{{ "%04d" % h }}/fcst_fv3lam/RESTART/</cyclestr><cyclestr>@Y@m@[email protected]</cyclestr></datadep> | ||
{%- endfor %} | ||
</and> | ||
{%- else %} | ||
<and> | ||
{% for h in range(1, num_ens_members+1) %} | ||
<datadep age="00:00:01:00"><cyclestr offset="-{{ da_cycle_interval_hrs }}:00:00">&RRFSE_FG_ROOT;/@Y@m@d@H/mem{{ "%04d" % h }}/fcst_fv3lam/RESTART/</cyclestr><cyclestr>@Y@m@[email protected]</cyclestr></datadep> | ||
{%- endfor %} | ||
</and> | ||
{%- endif %} | ||
</or> | ||
</and> | ||
<and> | ||
|
@@ -2086,7 +2094,9 @@ MODULES_RUN_TASK_FP script. | |
<dependency> | ||
<and> | ||
<taskdep task="&PREP_CYC_ENSMEAN_TN;"/> | ||
{%- if do_enkf_radar_ref %} | ||
<taskdep task="&PROCESS_RADAR_REF_TN;_prod"/> | ||
{%- endif %} | ||
{% if machine in ["JET", "HERA"] -%} | ||
<datadep age="05:00"><cyclestr>&OBSPATH;/@Y@m@[email protected]@Hz.prepbufr.tm00</cyclestr></datadep> | ||
{% else -%} | ||
|
@@ -2321,7 +2331,16 @@ MODULES_RUN_TASK_FP script. | |
<envar><name>OB_TYPE</name><value>radardbz</value></envar> | ||
|
||
<dependency> | ||
<and> | ||
<taskdep task="&RUN_ENKFUPDT_TN;"/> | ||
{%- if do_retro %} | ||
<and> | ||
{%- for m in range(1, num_ens_members+1) %} | ||
<datadep age="00:00:00:01"><cyclestr>&NWGES_BASEDIR;/@Y@m@d@H/mem{{ "%04d" % m }}/observer_gsi/diag_conv_rw_ges.@Y@m@[email protected]</cyclestr></datadep> | ||
{%- endfor %} | ||
</and> | ||
{%- endif %} | ||
</and> | ||
</dependency> | ||
</task> | ||
|
||
|