Skip to content

Commit

Permalink
Add new GSI monitor jobs to GFS cycled setup
Browse files Browse the repository at this point in the history
- Add job configs to config list.
- Add jobs to job list.

Refs NOAA-EMC#1908
  • Loading branch information
KateFriedman-NOAA committed Oct 18, 2023
1 parent 7bf3d2f commit 566b59b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions workflow/applications/gfs_cycled.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,15 @@ def _get_app_configs(self):
configs += ['eobs', 'eomg', 'ediag', 'eupd']
configs += ['ecen', 'esfc', 'efcs', 'echgres', 'epos', 'earc']

if self.do_verfozn:
configs += ['verfozn']

if self.do_verfrad:
configs += ['verfrad']

if self.do_vminmon:
configs += ['vminmon']

if self.do_metp:
configs += ['metp']

Expand Down Expand Up @@ -159,6 +168,16 @@ def get_task_names(self):
if self.do_fit2obs:
gdas_tasks += ['fit2obs']

if self.do_verfozn:
gdas_tasks += ['verfozn']

if self.do_verfrad:
gdas_tasks += ['verfrad']

if self.do_vminmon:
gdas_tasks += ['vminmon']

gdas_tasks += gdas_gfs_common_cleanup_tasks
gdas_tasks += gdas_gfs_common_cleanup_tasks

# Collect "gfs" cycle tasks
Expand All @@ -171,6 +190,9 @@ def get_task_names(self):

gfs_tasks += gdas_gfs_common_tasks_after_fcst

if self.do_vminmon:
gfs_tasks += ['vminmon']

if self.do_metp:
gfs_tasks += ['metp']

Expand Down

0 comments on commit 566b59b

Please sign in to comment.