Skip to content

Commit c012019

Browse files
Merge pull request #143 from gustavo-marques/fix_vhGM_GEOMETRIC
Fix a bug in GM when using MEKE_GEOMETRIC
2 parents 0eb0615 + c429824 commit c012019

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parameterizations/lateral/MOM_thickness_diffuse.F90

+2-2
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,8 @@ subroutine thickness_diffuse(h, uhtr, vhtr, tv, dt, G, GV, US, MEKE, VarMix, CDp
307307
if (associated(MEKE)) then ; if (associated(MEKE%Kh)) then
308308
if (CS%MEKE_GEOMETRIC) then
309309
!$OMP do
310-
do J=js-1,je ; do I=is,ie
311-
Khth_loc(I,j) = Khth_loc(I,j) + G%mask2dCv(i,J) * CS%MEKE_GEOMETRIC_alpha * &
310+
do J=js-1,je ; do i=is,ie
311+
Khth_loc_v(i,J) = Khth_loc_v(i,J) + G%mask2dCv(i,J) * CS%MEKE_GEOMETRIC_alpha * &
312312
0.5*(MEKE%MEKE(i,j)+MEKE%MEKE(i,j+1)) / &
313313
(VarMix%SN_v(i,J) + CS%MEKE_GEOMETRIC_epsilon)
314314
enddo ; enddo

0 commit comments

Comments
 (0)