Skip to content

Commit

Permalink
Fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavo-marques committed Jul 27, 2023
1 parent 8234e69 commit 53ccbc3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tracer/MOM_neutral_diffusion.F90
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,8 @@ subroutine neutral_diffusion_calc_coeffs(G, GV, US, h, T, S, CS, p_surf)
! get k-indices and zeta
do j=G%jsc-1, G%jec+1 ; do i=G%isc-1,G%iec+1
if (G%mask2dT(i,j) > 0.0) then
call boundary_k_range(SURFACE, G%ke, h(i,j,:), CS%hbl(i,j), k_top(i,j), zeta_top(i,j), k_bot(i,j), zeta_bot(i,j))
call boundary_k_range(SURFACE, G%ke, h(i,j,:), CS%hbl(i,j), k_top(i,j), zeta_top(i,j), k_bot(i,j), &
zeta_bot(i,j))
endif
enddo; enddo
! TODO: add similar code for BOTTOM boundary layer
Expand Down

0 comments on commit 53ccbc3

Please sign in to comment.