Skip to content

Commit

Permalink
Fix f-o mode not sourcing postsnd when soundings are on (NOAA-EMC#1790)
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 NOAA-EMC#1431
  • Loading branch information
WalterKolczynski-NOAA committed Aug 14, 2023
1 parent 8d088b3 commit 8b19f42
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 8b19f42

Please sign in to comment.