Skip to content

Commit

Permalink
add testcases
Browse files Browse the repository at this point in the history
  • Loading branch information
bigfooted committed Feb 24, 2025
1 parent dc65d47 commit 2003b18
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions TestCases/parallel_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -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) ###
##############################################
Expand Down

0 comments on commit 2003b18

Please sign in to comment.