Skip to content

Commit

Permalink
Fix f-o mode not sourcing postsnd when soundings are on
Browse files Browse the repository at this point in the history
Soundings are allowed in forecast-only mode, but the config file would
not be sourced during experiment creation. Now the config file is
sourced if bufr soundings (`DO_BUFRSND`) are on.

Resolves #1431
  • Loading branch information
WalterKolczynski-NOAA committed Aug 11, 2023
1 parent fe97b19 commit c2ad7e0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions workflow/applications/gfs_forecast_only.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ def _get_app_configs(self):
if self.do_atm and self.do_metp:
configs += ['metp']

if self.do_bufrsnd:
configs += ['postsnd']

if self.do_gempak:
configs += ['gempak']

Expand Down

0 comments on commit c2ad7e0

Please sign in to comment.