Skip to content

Commit 3009d3a

Browse files
committed
small changes to the example cases
1 parent c465891 commit 3009d3a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/common/m_checker_common.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ contains
167167
"Elasticity works only for model_eqns 2 and 3")
168168
#:for X in ['x', 'y', 'z']
169169
#:for BOUND in ['beg', 'end']
170-
@:PROHIBIT(hyperelasticity .and. ((bc_${X}$%${BOUND}$ /= -2) .or. (bc_${X}$%${BOUND}$ /= -3)), &
170+
@:PROHIBIT(hyperelasticity .and. ((bc_${X}$%${BOUND}$ .lt. -3)), &
171171
"bc_${X}$%${BOUND}$ is not supported")
172172
#:endfor
173173
#:endfor

toolchain/mfc/test/cases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ def foreach_example():
848848
continue
849849

850850
# List of currently broken examples -> currently attempting to fix!
851-
brokenCases = ["2D_ibm_cfl_dt", "1D_sodHypo", "2D_viscous", "2D_laplace_pressure_jump", "2D_bubbly_steady_shock", "2D_advection", "2D_hardcodied_ic", "2D_ibm_multiphase", "2D_acoustic_broadband", "1D_inert_shocktube", "1D_reactive_shocktube", "2D_ibm_steady_shock", "3D_performance_test", "3D_ibm_stl_ellipsoid", "3D_sphbubcollapse", "2D_ibm_stl_wedge", "3D_ibm_stl_pyramid", "3D_ibm_bowshock", "3D_turb_mixing", "2D_mixing_artificial_Ma", "3D_lagrange_bubblescreen", "3D_hyper_bubingel", "3D_hyper_bubinwater"]
851+
brokenCases = ["2D_ibm_cfl_dt", "1D_sodHypo", "2D_viscous", "2D_laplace_pressure_jump", "2D_bubbly_steady_shock", "2D_advection", "2D_hardcodied_ic", "2D_ibm_multiphase", "2D_acoustic_broadband", "1D_inert_shocktube", "1D_reactive_shocktube", "2D_ibm_steady_shock", "3D_performance_test", "3D_ibm_stl_ellipsoid", "3D_sphbubcollapse", "2D_ibm_stl_wedge", "3D_ibm_stl_pyramid", "3D_ibm_bowshock", "3D_turb_mixing", "2D_mixing_artificial_Ma", "3D_lagrange_bubblescreen", "3D_hyper_bubingel", "3D_hyper_bubinwater", "1D_hyper_impact_strong", "1D_hyper_impact_weak", "1D_hypo_impact_strong", "1D_hypo_impact_weak" ]
852852
if path in brokenCases:
853853
continue
854854
name = f"{path.split('_')[0]} -> Example -> {'_'.join(path.split('_')[1:])}"

0 commit comments

Comments
 (0)