Skip to content

Commit 145c94a

Browse files
*Change default interpolation to cubic rather than quadratic.
Change default interpolation method to cubic to enable the most accurate available calculation of the boundary layer depth. Changes answers.
1 parent b128b5d commit 145c94a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/parameterizations/vertical/MOM_KPP.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ logical function KPP_init(paramFile, G, diag, Time, CS, passive)
154154
call get_param(paramFile, mod, 'INTERP_TYPE', CS%interpType, &
155155
'Type of interpolation to use to determine the OBL depth.\n'// &
156156
'Allowed types are: linear, quadratic, cubic.', &
157-
default='quadratic')
157+
default='cubic')
158158
call get_param(paramFile, mod, 'COMPUTE_EKMAN', CS%computeEkman, &
159159
'If True, limit the OBL depth to be shallower than the Ekman depth.', &
160160
default=.False.)

0 commit comments

Comments
 (0)