Skip to content

Commit 8008855

Browse files
author
Daniel Vickers
committed
formatting and spelling
1 parent 975c5db commit 8008855

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/simulation/m_particle_bed.fpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,16 +157,17 @@ contains
157157
end do
158158

159159
if (n_placed < particle_bed(b)%num_particles) then
160-
print *, "Error :: Failed to place all IBs ib particle bed"
161-
stop
160+
print *, "Error :: Failed to place all IBs ib particle bed"
161+
stop
162162
end if
163163

164164
n_total_placed = n_total_placed + n_placed
165165
deallocate (placed, hash_head, chain_next)
166166
end do
167167

168168
call cpu_time(t_end)
169-
if (proc_rank == 0) print '(a,i0,a,f0.3,a)', 'Particle beds placed ', n_total_placed, ' particles in ', t_end - t_start, ' seconds.'
169+
if (proc_rank == 0) print '(a,i0,a,f0.3,a)', 'Particle beds placed ', n_total_placed, ' particles in ', t_end - t_start, &
170+
& ' seconds.'
170171

171172
end subroutine s_generate_particle_beds
172173

src/simulation/m_start_up.fpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ contains
923923
else if (t_step_start > 0) then
924924
call s_read_ib_restart_data(t_step_start)
925925
else
926-
! particle bed generated on first tiem step
926+
! particle bed generated on first time step
927927
call s_generate_particle_beds()
928928
end if
929929
call s_instantiate_STL_models()
@@ -1219,6 +1219,7 @@ contains
12191219
logical :: is_in_neighborhood, is_local
12201220

12211221
! do all set up for moving immersed boundaries
1222+
12221223
moving_immersed_boundary_flag = .false.
12231224
do i = 1, num_ibs
12241225
if (patch_ib(i)%moving_ibm /= 0) then

0 commit comments

Comments
 (0)