Skip to content
Open
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 src/pre_process/m_grid.f90
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ impure subroutine s_generate_serial_grid
end do

y_cb = y_cb*length
y_cc(0:m) = (y_cb(0:n) + y_cb(-1:n - 1))/2._wp
y_cc(0:n) = (y_cb(0:n) + y_cb(-1:n - 1))/2._wp

dy = minval(y_cb(0:n) - y_cb(-1:n - 1))

Expand Down Expand Up @@ -168,7 +168,7 @@ impure subroutine s_generate_serial_grid
end do

z_cb = z_cb*length
z_cc(0:m) = (z_cb(0:p) + z_cb(-1:p - 1))/2._wp
z_cc(0:p) = (z_cb(0:p) + z_cb(-1:p - 1))/2._wp

dz = minval(z_cb(0:p) - z_cb(-1:p - 1))

Expand Down
Loading