Skip to content

Commit 337af39

Browse files
committedJun 6, 2020
+(*)Changed the default for MEKE_ALPHA_RHINES
Changed the default value of MEKE_ALPHA_RHINES and MEKE_ALPHA_EADY from 0.05 to 0.0, following the pattern for the defaults for other MEKE parameters. All answers in the MOM6-examples test suite are bitwise identical, but this will change answers in some test cases that use MEKE for diffusivities or viscosities where MEKE_ALPHA_RHINES or MEKE_ALPHA_EADY are not set explicitly. There are changes to the MOM_parameter_doc files.
1 parent 101a490 commit 337af39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/parameterizations/lateral/MOM_MEKE.F90

+2-2
Original file line numberDiff line numberDiff line change
@@ -1154,11 +1154,11 @@ logical function MEKE_init(Time, G, US, param_file, diag, CS, MEKE, restart_CS)
11541154
call get_param(param_file, mdl, "MEKE_ALPHA_RHINES", CS%aRhines, &
11551155
"If positive, is a coefficient weighting the Rhines scale "//&
11561156
"in the expression for mixing length used in MEKE-derived diffusivity.", &
1157-
units="nondim", default=0.05)
1157+
units="nondim", default=0.0)
11581158
call get_param(param_file, mdl, "MEKE_ALPHA_EADY", CS%aEady, &
11591159
"If positive, is a coefficient weighting the Eady length scale "//&
11601160
"in the expression for mixing length used in MEKE-derived diffusivity.", &
1161-
units="nondim", default=0.05)
1161+
units="nondim", default=0.0)
11621162
call get_param(param_file, mdl, "MEKE_ALPHA_FRICT", CS%aFrict, &
11631163
"If positive, is a coefficient weighting the frictional arrest scale "//&
11641164
"in the expression for mixing length used in MEKE-derived diffusivity.", &

0 commit comments

Comments
 (0)
Please sign in to comment.