Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
jswhit2 committed Oct 27, 2023
1 parent 0aa20b4 commit 92f28c8
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion parm/config/gefs/config.ufs
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ if [[ "${skip_mom6}" == "false" ]]; then
MOM6_RESTART_SETTING='r'
MOM6_RIVER_RUNOFF='False'
eps_imesh="4.0e-1"
MOM6_DIAG_COORD_DEF_Z_FILE="oceanda_zgrid_25L.nc"
MOM6_DIAG_MISVAL="0.0"
MOM6_ALLOW_LANDMASK_CHANGES='False'
TOPOEDITS=""
;;
"100")
ntasks_mom6=20
Expand All @@ -269,8 +273,15 @@ if [[ "${skip_mom6}" == "false" ]]; then
MOM6_RESTART_SETTING='n'
MOM6_RIVER_RUNOFF='False'
eps_imesh="2.5e-1"
if [[ "${DO_JEDIOCNVAR:-NO}" = "YES" ]]; then
MOM6_DIAG_COORD_DEF_Z_FILE="oceanda_zgrid_75L.nc"
MOM6_DIAG_MISVAL="0.0"
else
MOM6_DIAG_COORD_DEF_Z_FILE="interpolate_zgrid_40L.nc"
MOM6_DIAG_MISVAL="-1e34"
fi
;;
"50")
"050")
ntasks_mom6=60
OCNTIM=3600
NX_GLB=720
Expand All @@ -282,6 +293,15 @@ if [[ "${skip_mom6}" == "false" ]]; then
MOM6_RESTART_SETTING='n'
MOM6_RIVER_RUNOFF='True'
eps_imesh="1.0e-1"
TOPOEDITS="ufs.topo_edits_011818.nc"
if [[ "${DO_JEDIOCNVAR:-NO}" = "YES" ]]; then
MOM6_DIAG_COORD_DEF_Z_FILE="oceanda_zgrid_75L.nc"
MOM6_DIAG_MISVAL="0.0"
else
MOM6_DIAG_COORD_DEF_Z_FILE="interpolate_zgrid_40L.nc"
MOM6_DIAG_MISVAL="-1e34"
fi
MOM6_ALLOW_LANDMASK_CHANGES='True'
;;
"025")
ntasks_mom6=220
Expand All @@ -295,6 +315,15 @@ if [[ "${skip_mom6}" == "false" ]]; then
MOM6_RIVER_RUNOFF='True'
MOM6_RESTART_SETTING="r"
eps_imesh="1.0e-1"
TOPOEDITS=""

Check warning

Code scanning / shellcheck

TOPOEDITS appears unused. Verify use (or export if used externally). Warning

TOPOEDITS appears unused. Verify use (or export if used externally).
if [[ "${DO_JEDIOCNVAR:-NO}" = "YES" ]]; then
MOM6_DIAG_COORD_DEF_Z_FILE="oceanda_zgrid_75L.nc"
MOM6_DIAG_MISVAL="0.0"
else
MOM6_DIAG_COORD_DEF_Z_FILE="interpolate_zgrid_40L.nc"

Check warning

Code scanning / shellcheck

MOM6_DIAG_COORD_DEF_Z_FILE appears unused. Verify use (or export if used externally). Warning

MOM6_DIAG_COORD_DEF_Z_FILE appears unused. Verify use (or export if used externally).
MOM6_DIAG_MISVAL="-1e34"

Check warning

Code scanning / shellcheck

MOM6_DIAG_MISVAL appears unused. Verify use (or export if used externally). Warning

MOM6_DIAG_MISVAL appears unused. Verify use (or export if used externally).
fi
MOM6_ALLOW_LANDMASK_CHANGES='True'

Check warning

Code scanning / shellcheck

MOM6_ALLOW_LANDMASK_CHANGES appears unused. Verify use (or export if used externally). Warning

MOM6_ALLOW_LANDMASK_CHANGES appears unused. Verify use (or export if used externally).
;;
*)
echo "FATAL ERROR: Unsupported MOM6 resolution = ${mom6_res}, ABORT!"
Expand Down

0 comments on commit 92f28c8

Please sign in to comment.