Skip to content

Commit 68075ec

Browse files
committed
Revert "added runtime folder"
This reverts commit dbb8459.
1 parent 2959fcb commit 68075ec

File tree

7 files changed

+3
-132
lines changed

7 files changed

+3
-132
lines changed

RunTimeTests/MeanTimeData

Lines changed: 0 additions & 29 deletions
This file was deleted.

RunTimeTests/testRuntime.py

Lines changed: 0 additions & 62 deletions
This file was deleted.

jobs.txt

Lines changed: 0 additions & 30 deletions
This file was deleted.

src/simulation/m_global_parameters.fpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ module m_global_parameters
2727

2828
implicit none
2929

30-
real(kind(0d0)) :: time = 0
31-
3230
! Logistics ================================================================
3331
integer :: num_procs !< Number of processors
3432
integer, parameter :: num_stcls_min = 5 !< Mininum # of stencils

src/simulation/m_time_steppers.f90

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,6 @@ subroutine s_1st_order_tvd_rk(t_step, time_avg) ! ------------------------------
231231

232232
call cpu_time(finish)
233233

234-
time = time + (finish - start)
235-
236234
if (t_step >= 4) then
237235
time_avg = (abs(finish - start) + (t_step - 4)*time_avg)/(t_step - 3)
238236
else
@@ -315,8 +313,6 @@ subroutine s_2nd_order_tvd_rk(t_step, time_avg) ! ------------------------------
315313

316314
call cpu_time(finish)
317315

318-
time = time + (finish - start)
319-
320316
if (t_step >= 4) then
321317
time_avg = (abs(finish - start) + (t_step - 4)*time_avg)/(t_step - 3)
322318
else
@@ -426,8 +422,6 @@ subroutine s_3rd_order_tvd_rk(t_step, time_avg) ! ------------------------------
426422

427423
call cpu_time(finish)
428424

429-
time = time + (finish - start)
430-
431425
if (t_step >= 4) then
432426
time_avg = (abs(finish - start) + (t_step - 4)*time_avg)/(t_step - 3)
433427
else

src/simulation/m_viscous.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1376,8 +1376,8 @@ subroutine s_reconstruct_cell_boundary_values_visc(v_vf, vL_x_flat, vL_y_flat, v
13761376
end subroutine s_reconstruct_cell_boundary_values_visc ! --------------------
13771377

13781378
subroutine s_finalize_viscous_module()
1379-
!deallocate (gammas, pi_infs)
1380-
!deallocate (Res(1:2, 1:maxval(Re_size)))
1379+
deallocate (gammas, pi_infs)
1380+
deallocate (Res(1:2, 1:maxval(Re_size)))
13811381
end subroutine s_finalize_viscous_module
13821382

13831383
end module m_viscous

src/simulation/p_main.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ program p_main
253253
call s_mpi_barrier()
254254

255255
if (num_procs > 1) then
256-
call mpi_bcast_time_step_values(proc_time, time)
256+
call mpi_bcast_time_step_values(proc_time, time_avg)
257257

258258
call mpi_bcast_time_step_values(io_proc_time, io_time_avg)
259259
end if

0 commit comments

Comments
 (0)