Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix kOBL #182

Merged
merged 2 commits into from
Sep 27, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions phy/mod_difest.F
Original file line number Diff line number Diff line change
Expand Up @@ -1161,8 +1161,8 @@ subroutine difest_vertical_hyb(m,n,mm,nn,k1m,k1n)
. cellHeight,OBLdepth(i,j))

! gets index of the level and interface above hbl
kOBL = CVMix_kpp_compute_kOBL_depth(iFaceHeight,
. cellHeight,OBLdepth(i,j))
kOBL = int(hOBL(i,j)) ! index of interface above OBL depth

c --- ------ Diapycnal mixing when local stability is weak
c --- ------ convection routine based on N2 not rho
c --- ------ make sure it is in metrics if stability depends on rho
Expand Down Expand Up @@ -1205,10 +1205,6 @@ subroutine difest_vertical_hyb(m,n,mm,nn,k1m,k1n)
. kk, ! (in) Number of levels in array shape
. CVMix_kpp_params_user=KPP_params ) ! KPP parameters

! gets index of the level and interface above hbl
kOBL = CVMix_kpp_compute_kOBL_depth(iFaceHeight,
. cellHeight,OBLdepth(i,j))

c ---- ccc -------
! convert m2/s to cm2/s
Kv_kpp = Kv_kpp*1e4
Expand Down