Skip to content

Commit

Permalink
Disable enkf versions of coupled settings
Browse files Browse the repository at this point in the history
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
  • Loading branch information
WalterKolczynski-NOAA committed Jun 27, 2023
1 parent 6e825a7 commit 05b7304
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions parm/config/gfs/config.efcs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 05b7304

Please sign in to comment.