From 8b19f4217e2b200b3ea3995d0038acdce19e6a6b Mon Sep 17 00:00:00 2001 From: Walter Kolczynski - NOAA Date: Sun, 13 Aug 2023 22:42:51 -0400 Subject: [PATCH] Fix f-o mode not sourcing postsnd when soundings are on (#1790) 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 --- workflow/applications/gfs_forecast_only.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/workflow/applications/gfs_forecast_only.py b/workflow/applications/gfs_forecast_only.py index 5477e13cc6..de01caa6e2 100644 --- a/workflow/applications/gfs_forecast_only.py +++ b/workflow/applications/gfs_forecast_only.py @@ -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']