Skip to content
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
4 changes: 2 additions & 2 deletions cicecore/cicedynB/infrastructure/ice_grid.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1232,8 +1232,8 @@ subroutine rectgrid

! land in the upper left and lower right corners,
! otherwise open boundaries
imid = aint(real(nx_global)/c2,kind=int_kind)
jmid = aint(real(ny_global)/c2,kind=int_kind)
imid = nint(aint(real(nx_global)/c2))
jmid = nint(aint(real(ny_global)/c2))

do j = 3,ny_global-2
do i = 3,nx_global-2
Expand Down