Skip to content

Commit ea293f6

Browse files
committed
cleanup
1 parent 579ae58 commit ea293f6

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

src/simulation/m_riemann_solvers.fpp

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -110,20 +110,6 @@ module m_riemann_solvers
110110

111111
end subroutine s_abstract_riemann_solver
112112

113-
!> The abstract interface to the subroutines that are used to calculate
114-
!! the Roe and arithmetic average states. For more information refer to:
115-
!! 1) s_compute_roe_average_state
116-
!! 2) s_compute_arithmetic_average_state
117-
!! @param i First coordinate location index
118-
!! @param j Second coordinate location index
119-
!! @param k Third coordinate location index
120-
subroutine s_compute_abstract_average_state(qL_prim_rs_vf, qR_prim_rs_vf, i, j, k)
121-
import :: scalar_field, int_bounds_info, sys_size
122-
integer, intent(IN) :: i, j, k
123-
type(scalar_field), dimension(sys_size), intent(IN) :: qL_prim_rs_vf, qR_prim_rs_vf
124-
125-
end subroutine s_compute_abstract_average_state
126-
127113
!> The abstract interface to the subroutines that are utilized to compute
128114
!! the wave speeds of the Riemann problem either directly or by the means
129115
!! of pressure-velocity estimates. For more information please refer to:
@@ -330,11 +316,6 @@ module m_riemann_solvers
330316
!! Pointer to the procedure that is utilized to calculate either the HLL,
331317
!! HLLC or exact intercell fluxes, based on the choice of Riemann solver
332318

333-
procedure(s_compute_abstract_average_state), &
334-
pointer :: s_compute_average_state => null() !<
335-
!! Pointer to the subroutine utilized to calculate either the Roe or the
336-
!! arithmetic average state variables, based on the chosen average state
337-
338319
procedure(s_compute_abstract_wave_speeds), &
339320
pointer :: s_compute_wave_speeds => null() !<
340321
!! Pointer to the subroutine that is utilized to compute the wave speeds of
@@ -4499,7 +4480,7 @@ contains
44994480

45004481
! Disassociating the procedural pointers to the procedures that were
45014482
! utilized to compute the average state and estimate the wave speeds
4502-
s_compute_average_state => null(); s_compute_wave_speeds => null()
4483+
s_compute_wave_speeds => null()
45034484

45044485
! Disassociating procedural pointer to the subroutine which was
45054486
! utilized to calculate the viscous source flux

0 commit comments

Comments
 (0)