Skip to content

Commit

Permalink
Add efcs and epos to ufs_hybatm xml (#3192) (#3193)
Browse files Browse the repository at this point in the history
# Description
g-w PR #3185 inadvertently removed metatasks enkfgdas_fcst and
enkfgdas_epmn from the ufs_hybatmDA xml. This PR modifies
`workflow/applications/gfs_cycled.py` so that these metatasks are once
again in the ufs_hybatmDA xml.

Resolves: #3192
  • Loading branch information
RussTreadon-NOAA authored Jan 3, 2025
1 parent 21f8048 commit da9d717
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion parm/archive/enkf_restartb_grp.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ enkf_restartb_grp:
- "{{ COMIN_ATMOS_RESTART_MEM | relpath(ROTDIR) }}/{{ r_prefix }}.coupler.res"
- "{{ COMIN_ATMOS_RESTART_MEM | relpath(ROTDIR) }}/{{ r_prefix }}.fv_core.res.nc"
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
4 changes: 2 additions & 2 deletions workflow/applications/gfs_cycled.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,9 @@ def get_task_names(self):
task_names[run].append('echgres') if 'gdas' in run else 0
task_names[run] += ['ediag'] if options['lobsdiag_forenkf'] else ['eomg']
task_names[run].append('esnowanl') if options['do_jedisnowda'] and 'gdas' in run else 0
task_names[run].append('efcs') if 'gdas' in run else 0
task_names[run].append('epos') if 'gdas' in run else 0

task_names[run].append('efcs') if 'gdas' in run else 0
task_names[run].append('epos') if 'gdas' in run else 0
task_names[run] += ['stage_ic', 'ecen', 'esfc', 'earc', 'cleanup']

return task_names

0 comments on commit da9d717

Please sign in to comment.