From 05b73047b03f90092d1822476b52f1d3dd6f14d2 Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Tue, 27 Jun 2023 16:29:05 -0500 Subject: [PATCH] Disable enkf versions of coupled settings The enkf versions of coupled settings (DO_OCN, etc.) do not work properly because some settings have already been determined by that point based on the non-enkf versions of the settings. The enkf versions are now disabled until there is a solution (see #1692). Refs: #1593 Refs: #1692 --- parm/config/gfs/config.efcs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/parm/config/gfs/config.efcs b/parm/config/gfs/config.efcs index 09ebaf13df..556750af10 100644 --- a/parm/config/gfs/config.efcs +++ b/parm/config/gfs/config.efcs @@ -6,10 +6,13 @@ echo "BEGIN: config.efcs" # TODO: the _ENKF counterparts need to be defined in config.base -export DO_AERO=${DO_AERO_ENKF:-"NO"} -export DO_OCN=${DO_OCN_ENKF:-"NO"} -export DO_ICE=${DO_ICE_ENKF:-"NO"} -export DO_WAVE=${DO_WAVE_ENKF:-"NO"} +# TODO: Using different values for ensemble doesn't work because +# config.fcst sets a bunch of derived values based on these +# that is not duplicated here. [#1692] +# export DO_AERO=${DO_AERO_ENKF:-"NO"} +# export DO_OCN=${DO_OCN_ENKF:-"NO"} +# export DO_ICE=${DO_ICE_ENKF:-"NO"} +# export DO_WAVE=${DO_WAVE_ENKF:-"NO"} # TODO: Possibly need OCNRES_ENKF, ICERES_ENKF, WAVRES_ENKF too if [[ ${DO_OCN} == "YES" ]]; then