Skip to content

Commit

Permalink
simplify addition of efcs and epos to do_jediatmens block (#3192)
Browse files Browse the repository at this point in the history
  • Loading branch information
RussTreadon-NOAA committed Jan 1, 2025
1 parent 61cf3e1 commit e93036d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions workflow/applications/gfs_cycled.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,17 +311,15 @@ def get_task_names(self):
task_names[run] += ['atmensanlobs', 'atmensanlsol']
else:
task_names[run] += ['atmensanlletkf']
task_names[run].append('efcs') if 'gdas' in run else 0
task_names[run].append('epos') if 'gdas' in run else 0

else:
task_names[run] += ['eobs', 'eupd']
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 e93036d

Please sign in to comment.