Skip to content

Commit 7c48428

Browse files
committed
fix cleanliness
1 parent cc8541c commit 7c48428

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

src/simulation/m_time_steppers.fpp

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -325,11 +325,6 @@ contains
325325
real(kind(0d0)), intent(inout) :: time_avg
326326

327327
integer :: i, j, k, l, q!< Generic loop iterator
328-
real(kind(0d0)) :: nR3bar
329-
real(kind(0d0)) :: e_mix
330-
331-
real(kind(0d0)) :: T
332-
real(kind(0d0)), dimension(num_species) :: Ys
333328

334329
! Stage 1 of 1 =====================================================
335330

@@ -442,7 +437,6 @@ contains
442437

443438
integer :: i, j, k, l, q!< Generic loop iterator
444439
real(kind(0d0)) :: start, finish
445-
real(kind(0d0)) :: nR3bar
446440

447441
! Stage 1 of 2 =====================================================
448442

@@ -628,9 +622,7 @@ contains
628622
real(kind(0d0)), intent(INOUT) :: time_avg
629623

630624
integer :: i, j, k, l, q !< Generic loop iterator
631-
real(kind(0d0)) :: ts_error, denom, error_fraction, time_step_factor !< Generic loop iterator
632625
real(kind(0d0)) :: start, finish
633-
real(kind(0d0)) :: nR3bar
634626

635627
! Stage 1 of 3 =====================================================
636628

@@ -897,7 +889,6 @@ contains
897889
integer, intent(in) :: t_step
898890
real(kind(0d0)), intent(inout) :: time_avg
899891

900-
integer :: i, j, k, l !< Generic loop iterator
901892
real(kind(0d0)) :: start, finish
902893

903894
call cpu_time(start)
@@ -932,8 +923,6 @@ contains
932923
type(int_bounds_info) :: ix, iy, iz
933924
type(vector_field) :: gm_alpha_qp
934925

935-
integer :: i, j, k, l, q !< Generic loop iterator
936-
937926
ix%beg = 0; iy%beg = 0; iz%beg = 0
938927
ix%end = m; iy%end = n; iz%end = p
939928
call s_convert_conservative_to_primitive_variables( &
@@ -963,7 +952,7 @@ contains
963952
type(vector_field) :: gm_alpha_qp
964953
real(kind(0d0)) :: dt_local
965954
type(int_bounds_info) :: ix, iy, iz
966-
integer :: i, j, k, l, q !< Generic loop iterators
955+
integer :: j, k, l !< Generic loop iterators
967956

968957
ix%beg = 0; iy%beg = 0; iz%beg = 0
969958
ix%end = m; iy%end = n; iz%end = p

0 commit comments

Comments
 (0)