Skip to content

Commit

Permalink
Fix companion ocean resolution for C48 (#1066)
Browse files Browse the repository at this point in the history
The ocean resolution for atmostphere C48 should by 5 deg, not 4 deg.

Fixes #1054
  • Loading branch information
WalterKolczynski-NOAA authored Oct 11, 2022
1 parent e8ef5fc commit 8172530
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion parm/config/config.base.emc.dyn
Original file line number Diff line number Diff line change
Expand Up @@ -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;;
Expand Down
2 changes: 1 addition & 1 deletion parm/config/config.efcs
Original file line number Diff line number Diff line change
Expand Up @@ -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;;
Expand Down
2 changes: 1 addition & 1 deletion parm/config/config.ocn
Original file line number Diff line number Diff line change
Expand Up @@ -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;;
Expand Down

0 comments on commit 8172530

Please sign in to comment.