forked from NOAA-EMC/global-workflow
-
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.
Stage atmospheric backgrounds and UFS cubed-sphere history files (NOA…
…A-EMC#2792) This PR changes the G-W so that backgrounds for the atmospheric analyses are staged as UFS cubed-sphere history files rather than FMS restarts. The motivation being that FMS restarts include many data we don't need for the analyses and thus take up too much disk space/bandwidth. This is a companion PR to: GDASApp#1236 JCB-GDAS#19 --------- Co-authored-by: danholdaway <[email protected]> Co-authored-by: Dan Holdaway <[email protected]> Co-authored-by: Walter Kolczynski - NOAA <[email protected]> Co-authored-by: RussTreadon-NOAA <[email protected]> Co-authored-by: RussTreadon-NOAA <[email protected]> Co-authored-by: Rahul Mahajan <[email protected]> Co-authored-by: David Huber <[email protected]>
- Loading branch information
1 parent
ad8d3e9
commit e2c0f06
Showing
6 changed files
with
25 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,5 @@ | ||
{% set ftype_list = ['fv_core.res', 'fv_srf_wnd.res', 'fv_tracer.res', 'phy_data', 'sfc_data'] %} | ||
{% set time_list = [current_cycle] %} | ||
|
||
mkdir: | ||
- '{{ DATA }}/bkg' | ||
copy: | ||
{% for time in time_list %} | ||
- ['{{ COM_ATMOS_RESTART_PREV }}/{{ time | to_fv3time }}.coupler.res', '{{ DATA }}/bkg/'] | ||
{% for ftype in ftype_list %} | ||
{% for itile in range(1,ntiles+1) %} | ||
- ['{{ COM_ATMOS_RESTART_PREV }}/{{ time | to_fv3time }}.{{ ftype }}.tile{{ itile }}.nc', '{{ DATA }}/bkg/'] | ||
{% endfor %} | ||
{% endfor %} | ||
{% endfor %} | ||
- ['{{ COM_ATMOS_HISTORY_PREV }}/{{ GPREFIX }}cubed_sphere_grid_atmf006.nc', '{{ DATA }}/bkg/'] | ||
- ['{{ COM_ATMOS_HISTORY_PREV }}/{{ GPREFIX }}cubed_sphere_grid_sfcf006.nc', '{{ DATA }}/bkg/'] |
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 |
---|---|---|
@@ -1,24 +1,15 @@ | ||
{% set ftype_list = ['fv_core.res', 'fv_srf_wnd.res', 'fv_tracer.res', 'phy_data', 'sfc_data'] %} | ||
{% set time_list = [current_cycle] %} | ||
|
||
mkdir: | ||
{% for imem in range(1,NMEM_ENS+1) %} | ||
- '{{ DATA }}/ens/{{ 'mem%03d' | format(imem) }}' | ||
{% endfor %} | ||
copy: | ||
{% for time in time_list %} | ||
{% for imem in range(1,NMEM_ENS+1) %} | ||
{% set memchar = 'mem%03d' | format(imem) %} | ||
{% set tmpl_dict = ({ '${ROTDIR}': ROTDIR, | ||
'${RUN}': 'enkfgdas', | ||
'${YMD}': previous_cycle | to_YMD, | ||
'${HH}': previous_cycle | strftime('%H'), | ||
'${MEMDIR}': memchar }) %} | ||
- ['{{ COM_ATMOS_RESTART_TMPL | replace_tmpl(tmpl_dict) }}/{{ time | to_fv3time }}.coupler.res', '{{ DATA }}/ens/{{ memchar }}/'] | ||
{% for ftype in ftype_list %} | ||
{% for itile in range(1,ntiles+1) %} | ||
- ['{{ COM_ATMOS_RESTART_TMPL | replace_tmpl(tmpl_dict) }}/{{ time | to_fv3time }}.{{ ftype }}.tile{{ itile }}.nc', '{{ DATA }}/ens/{{ memchar }}/'] | ||
{% endfor %} | ||
{% endfor %} | ||
{% endfor %} | ||
{% for imem in range(1,NMEM_ENS+1) %} | ||
{% set memchar = 'mem%03d' | format(imem) %} | ||
{% set tmpl_dict = ({ '${ROTDIR}': ROTDIR, | ||
'${RUN}': 'enkfgdas', | ||
'${YMD}': previous_cycle | to_YMD, | ||
'${HH}': previous_cycle | strftime('%H'), | ||
'${MEMDIR}': memchar }) %} | ||
- ['{{ COM_ATMOS_HISTORY_TMPL | replace_tmpl(tmpl_dict) }}/enkf{{ GPREFIX }}cubed_sphere_grid_atmf006.nc', '{{ DATA }}/ens/{{ memchar }}/'] | ||
- ['{{ COM_ATMOS_HISTORY_TMPL | replace_tmpl(tmpl_dict) }}/enkf{{ GPREFIX }}cubed_sphere_grid_sfcf006.nc', '{{ DATA }}/ens/{{ memchar }}/'] | ||
{% endfor %} |
Submodule gdas.cd
updated
9 files
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