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 d0651d3 commit 4968397Copy full SHA for 4968397
1 file changed
src/simulation/m_ibm.fpp
@@ -1197,14 +1197,14 @@ contains
1197
if (patch_ib(patch_id)%${X}$_centroid < ${X}$_domain%beg) then
1198
! if the boundary exited "left", wrap it back around to the "right"
1199
patch_ib(patch_id)%${X}$_centroid = patch_ib(patch_id)%${X}$_centroid + (${X}$_domain%end &
1200
- & - ${X}$_domain%beg)
+ & - ${X}$_domain%beg)
1201
else if (patch_ib(patch_id)%${X}$_centroid > ${X}$_domain%end) then
1202
! if the boundary exited "right", wrap it back around to the "left"
1203
patch_ib(patch_id)%${X}$_centroid = patch_ib(patch_id)%${X}$_centroid - (${X}$_domain%end &
1204
1205
end if
1206
1207
- end if
+ end if
1208
#:endfor
1209
end do
1210
$:END_GPU_PARALLEL_LOOP()
0 commit comments