Skip to content

Commit 42c2ea3

Browse files
committed
removing unused
1 parent 6bad379 commit 42c2ea3

File tree

2 files changed

+3
-18
lines changed

2 files changed

+3
-18
lines changed

src/simulation/m_start_up.fpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,6 @@ contains
215215
! Logical used to check the existence of the current directory file
216216
logical :: file_exist
217217

218-
! Generic loop iterators
219-
integer :: i, j
220-
221218
! Logistics ========================================================
222219
file_path = trim(case_dir)//'/.'
223220

@@ -1099,7 +1096,7 @@ contains
10991096
real(kind(0d0)), intent(inout) :: start, finish
11001097
integer, intent(inout) :: nt
11011098

1102-
integer :: i, j, k, l
1099+
integer :: i
11031100

11041101
if (cfl_dt) then
11051102
if (cfl_const_dt .and. t_step == 0) call s_compute_dt()

src/simulation/m_time_steppers.fpp

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -301,15 +301,9 @@ contains
301301
integer, intent(in) :: t_step
302302
real(kind(0d0)), intent(inout) :: time_avg
303303

304-
integer :: i, j, k, l, q!< Generic loop iterator
305-
real(kind(0d0)) :: nR3bar
306-
real(kind(0d0)) :: e_mix
307-
308-
real(kind(0d0)) :: T
309-
real(kind(0d0)), dimension(num_species) :: Ys
304+
integer :: i, j, k, l, q !< Generic loop iterator
310305

311306
! Stage 1 of 1 =====================================================
312-
313307
call nvtxStartRange("Time_Step")
314308

315309
call s_compute_rhs(q_cons_ts(1)%vf, q_prim_vf, rhs_vf, pb_ts(1)%sf, rhs_pb, mv_ts(1)%sf, rhs_mv, t_step, time_avg)
@@ -417,7 +411,6 @@ contains
417411

418412
integer :: i, j, k, l, q!< Generic loop iterator
419413
real(kind(0d0)) :: start, finish
420-
real(kind(0d0)) :: nR3bar
421414

422415
! Stage 1 of 2 =====================================================
423416

@@ -599,9 +592,7 @@ contains
599592
real(kind(0d0)), intent(INOUT) :: time_avg
600593

601594
integer :: i, j, k, l, q !< Generic loop iterator
602-
real(kind(0d0)) :: ts_error, denom, error_fraction, time_step_factor !< Generic loop iterator
603595
real(kind(0d0)) :: start, finish
604-
real(kind(0d0)) :: nR3bar
605596

606597
! Stage 1 of 3 =====================================================
607598

@@ -862,7 +853,6 @@ contains
862853
integer, intent(in) :: t_step
863854
real(kind(0d0)), intent(inout) :: time_avg
864855

865-
integer :: i, j, k, l !< Generic loop iterator
866856
real(kind(0d0)) :: start, finish
867857

868858
call cpu_time(start)
@@ -896,8 +886,6 @@ contains
896886

897887
type(vector_field) :: gm_alpha_qp
898888

899-
integer :: i, j, k, l, q !< Generic loop iterator
900-
901889
call s_convert_conservative_to_primitive_variables( &
902890
q_cons_ts(1)%vf, &
903891
q_prim_vf, &
@@ -924,7 +912,7 @@ contains
924912
real(kind(0d0)), dimension(2) :: Re !< Cell-avg. Reynolds numbers
925913
type(vector_field) :: gm_alpha_qp
926914
real(kind(0d0)) :: dt_local
927-
integer :: i, j, k, l, q !< Generic loop iterators
915+
integer :: j, k, l !< Generic loop iterators
928916

929917
call s_convert_conservative_to_primitive_variables( &
930918
q_cons_ts(1)%vf, &

0 commit comments

Comments
 (0)