Skip to content

Commit a68ffe8

Browse files
author
Daniel Vickers
committed
WR BTW
1 parent 0210fbb commit a68ffe8

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

src/simulation/m_ibm.fpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,6 @@ contains
10321032
end do
10331033
$:END_GPU_PARALLEL_LOOP()
10341034

1035-
if (proc_rank == 0) print *, "s_apply_collision_forces"
10361035
call s_apply_collision_forces(ghost_points, num_gps, ib_markers, forces, torques)
10371036

10381037
! reduce the forces across local neighborhood ranks

src/simulation/m_start_up.fpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -927,9 +927,12 @@ contains
927927
call s_generate_particle_beds()
928928
end if
929929
call s_instantiate_STL_models()
930+
if (proc_rank == 0) print *, "s_reduce_ib_patch_array"
930931
call s_reduce_ib_patch_array()
932+
if (proc_rank == 0) print *, "s_ibm_setup"
931933
call s_ibm_setup()
932934
if (t_step_start == 0 .or. (cfl_dt .and. n_start == 0)) then
935+
if (proc_rank == 0) print *, "s_write_ib_data_file"
933936
call s_write_ib_data_file(0)
934937
call s_write_ib_state_file(0)
935938
end if
@@ -1290,8 +1293,6 @@ contains
12901293
integer, dimension(4) :: buf4, rbuf4
12911294
integer, dimension(2) :: buf2, rbuf2
12921295

1293-
if (proc_rank == 0) print *, "Entering compute_ib_neighbor_ranks"
1294-
12951296
ax = ib_neighborhood_radius
12961297

12971298
if (allocated(ib_neighbor_ranks)) deallocate (ib_neighbor_ranks)
@@ -1435,8 +1436,6 @@ contains
14351436
end if
14361437
#endif
14371438
1438-
if (proc_rank == 0) print *, "Exiting compute_ib_neighbor_ranks"
1439-
14401439
end subroutine s_compute_ib_neighbor_ranks
14411440
14421441
subroutine get_neighbor_bounds()

0 commit comments

Comments
 (0)