Skip to content

Commit

Permalink
Fix missing paranthesis in previous commit (VS_viscosity_bug)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon.reichl authored and brandon.reichl committed Feb 3, 2025
1 parent 63c426c commit c0b6cd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parameterizations/vertical/MOM_kappa_shear.F90
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ subroutine Calc_kappa_shear_vertex(u_in, v_in, h, T_in, S_in, tv, p_surf, kappa_
enddo
endif ; enddo ! i-loop

if CS%VS_viscosity_bug then
if (CS%VS_viscosity_bug) then
do K=1,nz+1 ; do I=IsB,IeB
tke_io(I,J,K) = G%mask2dBu(I,J) * tke_2d(I,K)
kv_io(I,J,K) = ( G%mask2dBu(I,J) * kappa_2d(I,K,J2) ) * CS%Prandtl_turb
Expand Down

0 comments on commit c0b6cd5

Please sign in to comment.