Skip to content

Commit 5972e12

Browse files
committed
fix ups
1 parent 3ce911a commit 5972e12

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

src/simulation/m_checker.fpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,11 @@ contains
2525
subroutine s_check_inputs
2626

2727
call s_check_inputs_compilers
28-
2928
call s_check_inputs_weno
3029
call s_check_inputs_riemann_solver
3130
call s_check_inputs_time_stepping
3231
call s_check_inputs_model_eqns
3332
call s_check_inputs_acoustic_src
34-
call s_check_inputs_hypoelasticity
3533
call s_check_inputs_bubbles
3634
call s_check_inputs_adapt_dt
3735
call s_check_inputs_alt_soundspeed
@@ -257,11 +255,6 @@ contains
257255
258256
end subroutine s_check_inputs_acoustic_src
259257
260-
!> Checks constraints on hypoelasticity parameters
261-
subroutine s_check_inputs_hypoelasticity
262-
!@:PROHIBIT(hypoelasticity .and. riemann_solver /= 1, "hypoelasticity requires HLL Riemann solver (riemann_solver = 1)")
263-
end subroutine
264-
265258
!> Checks constraints on bubble parameters
266259
subroutine s_check_inputs_bubbles
267260
@:PROHIBIT(bubbles .and. riemann_solver /= 2, "Bubble modeling requires HLLC Riemann solver (riemann_solver = 2)")

src/simulation/m_hyperelastic.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ contains
232232

233233
real(wp) :: trace
234234
real(wp) :: f13 = 1_wp/3_wp
235-
integer :: i !< Generic loop iterators
235+
integer :: i
236236

237237
! tensor is the symmetric tensor & calculate the trace of the tensor
238238
trace = btensor(1)%sf(j, k, l) + btensor(3)%sf(j, k, l) + btensor(6)%sf(j, k, l)
@@ -272,7 +272,7 @@ contains
272272

273273
real(wp) :: trace
274274
real(wp) :: f13 = 1_wp/3_wp
275-
integer :: i !< Generic loop iterators
275+
integer :: i
276276

277277
!TODO Make this 1D and 2D capable
278278
! tensor is the symmetric tensor & calculate the trace of the tensor

0 commit comments

Comments
 (0)