We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daff4de commit ae30de5Copy full SHA for ae30de5
src/common/m_helper_basic.fpp
@@ -144,7 +144,7 @@ contains
144
end if
145
146
if (ib) then
147
- buff_size = max(buff_size, 6)
+ buff_size = max(buff_size, 10)
148
149
150
! Configuring Coordinate Direction Indexes
src/simulation/m_ibm.fpp
@@ -405,7 +405,8 @@ contains
405
.or. temp_loc > s_cc(index + 1)))
406
index = index + dir
407
if (index < -buff_size .or. index > bound) then
408
- exit
+ print *, "Increase buff_size further in m_helper_basic (currently set to a minimum of 10)"
409
+ error stop "Increase buff_size"
410
411
end do
412
ghost_points_in(q)%ip_grid(dim) = index
0 commit comments