Skip to content

Commit

Permalink
small fix indices limit
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickscholz committed Aug 3, 2023
1 parent e989cd5 commit cb95235
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/oce_ale.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3302,8 +3302,6 @@ subroutine oce_timestep_ale(n, ice, dynamics, tracers, partit, mesh)
use g_cvmix_kpp
use g_cvmix_tidal
use Toy_Channel_Soufflet
!PS use compute_Wvel_split_interface
!PS use compute_CFLz_interface
use oce_ale_interfaces
use compute_vert_vel_transpv_interface
use compute_ssh_split_explicit_interface
Expand Down
4 changes: 2 additions & 2 deletions src/oce_ale_ssh_splitexpl_subcycl.F90
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ subroutine momentum_adv_scalar_transpv(dynamics, partit, mesh)
do node=1, myDim_nod2D
ul1 = ulevels_nod2D(node)
nl1 = nlevels_nod2D(node)
wu(1:nl1+1) = 0.0_WP
wv(1:nl1+1) = 0.0_WP
wu(1:nl1) = 0.0_WP
wv(1:nl1) = 0.0_WP
UVnode_rhs(:,:,node) = 0.0_WP
!_______________________________________________________________________
! surface
Expand Down

0 comments on commit cb95235

Please sign in to comment.