Skip to content

Commit

Permalink
*Changed default for KPP_BEFORE_KAPPA_SHEAR
Browse files Browse the repository at this point in the history
- In NOAA-GFDL/MOM6-examples#47 @StephenGriffies notes that answers significantly
  when removing the code that removed and then added back diffusivity due to
  the Jackson et al. scheme (kappa-shear). The answer changes have nothing to do
  with the removal of the code but is solely due to the round-off differences
  associated with adding and subtracting a number.

  To record this, I am changing the default to not make the Kappa-Shear adjustment
  so that the code change in #219 does not get associated with the answer changes.
  • Loading branch information
adcroft committed Sep 4, 2015
1 parent 81e8071 commit 8e6283a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parameterizations/vertical/MOM_diabatic_driver.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1562,7 +1562,7 @@ subroutine diabatic_driver_init(Time, G, param_file, useALEalgorithm, diag, &
if (CS%use_kappa_shear) &
call get_param(param_file, mod, "KPP_BEFORE_KAPPA_SHEAR", CS%matchKPPwithoutKappaShear, &
"If true, KPP matches interior diffusivity that EXCLUDES any\n"// &
"diffusivity from kappa-shear.", default=.true.)
"diffusivity from kappa-shear.", default=.false.)
endif

call get_param(param_file, mod, "SALT_REJECT_BELOW_ML", CS%salt_reject_below_ML, &
Expand Down

0 comments on commit 8e6283a

Please sign in to comment.