diff --git a/TestCases/parallel_regression.py b/TestCases/parallel_regression.py index 530328b52a6..3fa47cb56c7 100644 --- a/TestCases/parallel_regression.py +++ b/TestCases/parallel_regression.py @@ -1458,6 +1458,24 @@ def main(): pywrapper_deformingBump.unsteady = True test_list.append(pywrapper_deformingBump) + # custom source: buoyancy term + pywrapper_buoyancy = TestCase('pywrapper_buoyancy') + pywrapper_buoyancy.cfg_dir = "py_wrapper/custom_source" + pywrapper_buoyancy.cfg_file = "lam_buoyancy_cavity.cfg" + pywrapper_buoyancy.test_iter = 1 + pywrapper_buoyancy.test_vals = [0.500000, 0.000000, -3.037859, -1.603563, -2.074259, 2.424288, 7.762848, -0.220436] + pywrapper_buoyancy.command = TestCase.Command("mpirun -np 2", "python", "run.py") + test_list.append(pywrapper_buoyancy) + + # custom source: turbulent flamespeed closure (Zimont model) for PSI testcase + pywrapper_zimont = TestCase('pywrapper_zimont') + pywrapper_zimont.cfg_dir = "py_wrapper/psi" + pywrapper_zimont.cfg_file = "psi.cfg" + pywrapper_zimont.test_iter = 1 + pywrapper_zimont.test_vals = [0.500000, 0.000000, -3.037859, -1.603563, -2.074259, 2.424288, 7.762848, -0.220436] + pywrapper_zimont.command = TestCase.Command("mpirun -np 2", "python", "run.py") + test_list.append(pywrapper_zimont) + ############################################## ### Method of Manufactured Solutions (MMS) ### ##############################################