From 3009d3a6dee4affa1773f4cf0bdbfac80a1f69f9 Mon Sep 17 00:00:00 2001 From: Mauro Rodriguez Date: Wed, 25 Dec 2024 14:46:04 -0600 Subject: [PATCH] small changes to the example cases --- src/common/m_checker_common.fpp | 2 +- toolchain/mfc/test/cases.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/m_checker_common.fpp b/src/common/m_checker_common.fpp index 818244047..79a5ec4d4 100644 --- a/src/common/m_checker_common.fpp +++ b/src/common/m_checker_common.fpp @@ -167,7 +167,7 @@ contains "Elasticity works only for model_eqns 2 and 3") #:for X in ['x', 'y', 'z'] #:for BOUND in ['beg', 'end'] - @:PROHIBIT(hyperelasticity .and. ((bc_${X}$%${BOUND}$ /= -2) .or. (bc_${X}$%${BOUND}$ /= -3)), & + @:PROHIBIT(hyperelasticity .and. ((bc_${X}$%${BOUND}$ .lt. -3)), & "bc_${X}$%${BOUND}$ is not supported") #:endfor #:endfor diff --git a/toolchain/mfc/test/cases.py b/toolchain/mfc/test/cases.py index dd32665b9..a9320119b 100644 --- a/toolchain/mfc/test/cases.py +++ b/toolchain/mfc/test/cases.py @@ -848,7 +848,7 @@ def foreach_example(): continue # List of currently broken examples -> currently attempting to fix! - 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"] + 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" ] if path in brokenCases: continue name = f"{path.split('_')[0]} -> Example -> {'_'.join(path.split('_')[1:])}"