From 8172530245972c7f569a2bf950b1929282b937e4 Mon Sep 17 00:00:00 2001 From: Walter Kolczynski - NOAA Date: Tue, 11 Oct 2022 15:58:37 -0400 Subject: [PATCH] Fix companion ocean resolution for C48 (#1066) The ocean resolution for atmostphere C48 should by 5 deg, not 4 deg. Fixes #1054 --- parm/config/config.base.emc.dyn | 2 +- parm/config/config.efcs | 2 +- parm/config/config.ocn | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/parm/config/config.base.emc.dyn b/parm/config/config.base.emc.dyn index 0633db18f5..8e465c908c 100755 --- a/parm/config/config.base.emc.dyn +++ b/parm/config/config.base.emc.dyn @@ -218,7 +218,7 @@ export LEVS=128 export CASE="@CASECTL@" export CASE_ENKF="@CASEENS@" case "$CASE" in - "C48") export OCNRES=400;; + "C48") export OCNRES=500;; "C96") export OCNRES=100;; "C192") export OCNRES=050;; "C384") export OCNRES=025;; diff --git a/parm/config/config.efcs b/parm/config/config.efcs index bfffe3ced8..4dedc38d3a 100755 --- a/parm/config/config.efcs +++ b/parm/config/config.efcs @@ -67,7 +67,7 @@ export cplwav=.false. # ocean model resolution case "$CASE_ENKF" in - "C48") export OCNRES=400;; + "C48") export OCNRES=500;; "C96") export OCNRES=100;; "C192") export OCNRES=050;; "C384") export OCNRES=025;; diff --git a/parm/config/config.ocn b/parm/config/config.ocn index 1675713e7c..4d24c0d87f 100644 --- a/parm/config/config.ocn +++ b/parm/config/config.ocn @@ -2,7 +2,7 @@ # OCNRES is currently being set in config.base # case "$CASE" in -# "C48") export OCNRES=400;; +# "C48") export OCNRES=500;; # "C96") export OCNRES=100;; # "C192") export OCNRES=050;; # "C384") export OCNRES=025;;