From c2ad7e0e967c60e93e456e8b0889f72d00131350 Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Thu, 10 Aug 2023 23:39:38 -0500 Subject: [PATCH] Fix f-o mode not sourcing postsnd when soundings are on 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']