From 2a9524524ba2436883e82618671256414ad75d3a Mon Sep 17 00:00:00 2001 From: bigfooted Date: Sun, 11 Jan 2026 12:36:44 +0100 Subject: [PATCH 1/7] update tutorial regression --- TestCases/tutorials.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/TestCases/tutorials.py b/TestCases/tutorials.py index dd0ae8dfc71..a4e1b5e409b 100644 --- a/TestCases/tutorials.py +++ b/TestCases/tutorials.py @@ -345,6 +345,34 @@ def main(): tutorial_design_multiobj.no_restart = True test_list.append(tutorial_design_multiobj) + # custom source: turbulent flamespeed closure (Zimont model) for PSI testcase + pywrapper_psi = TestCase('psi_adiabatic') + pywrapper_psi.cfg_dir = "../Tutorials/TFC_python/adiabatic" + pywrapper_psi.cfg_file = "psi.cfg" + pywrapper_psi.test_iter = 0 + pywrapper_psi.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] + pywrapper_psi.command = TestCase.Command("mpirun -np 2", "python", "run.py") + test_list.append(pywrapper_psi) + + # custom source: including source term for enthalpy equations + pywrapper_psi_hl = TestCase('psi_enthalpy') + pywrapper_psi_hl.cfg_dir = "../Tutorials/TFC_python/enthalpy" + pywrapper_psi_hl.cfg_file = "psi.cfg" + pywrapper_psi_hl.test_iter = 0 + pywrapper_psi_hl.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] + pywrapper_psi_hl.command = TestCase.Command("mpirun -np 2", "python", "run.py") + test_list.append(pywrapper_psi_hl) + + # custom source: including custom BC and source term + pywrapper_psi_hl = TestCase('psi_quench') + pywrapper_psi_hl.cfg_dir = "../Tutorials/TFC_python/quench" + pywrapper_psi_hl.cfg_file = "psi.cfg" + pywrapper_psi_hl.test_iter = 0 + pywrapper_psi_hl.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] + pywrapper_psi_hl.command = TestCase.Command("mpirun -np 2", "python", "run.py") + test_list.append(pywrapper_psi_hl) + + ###################################### ### RUN TESTS ### ###################################### From 863cec297b56129cd1edb3034d672cd8248c7f78 Mon Sep 17 00:00:00 2001 From: bigfooted Date: Sun, 11 Jan 2026 12:44:22 +0100 Subject: [PATCH 2/7] update tutorial regression --- TestCases/tutorials.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/TestCases/tutorials.py b/TestCases/tutorials.py index a4e1b5e409b..c614e1ee333 100644 --- a/TestCases/tutorials.py +++ b/TestCases/tutorials.py @@ -364,13 +364,13 @@ def main(): test_list.append(pywrapper_psi_hl) # custom source: including custom BC and source term - pywrapper_psi_hl = TestCase('psi_quench') - pywrapper_psi_hl.cfg_dir = "../Tutorials/TFC_python/quench" - pywrapper_psi_hl.cfg_file = "psi.cfg" - pywrapper_psi_hl.test_iter = 0 - pywrapper_psi_hl.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] - pywrapper_psi_hl.command = TestCase.Command("mpirun -np 2", "python", "run.py") - test_list.append(pywrapper_psi_hl) + pywrapper_psi_quench = TestCase('psi_quench') + pywrapper_psi_quench.cfg_dir = "../Tutorials/TFC_python/quench" + pywrapper_psi_quench.cfg_file = "psi.cfg" + pywrapper_psi_quench.test_iter = 0 + pywrapper_psi_quench.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] + pywrapper_psi_quench.command = TestCase.Command("mpirun -np 2", "python", "run.py") + test_list.append(pywrapper_psi_quench) ###################################### From 4540d949a1bb4dd2454c061ed37c10034bc28f41 Mon Sep 17 00:00:00 2001 From: bigfooted Date: Sun, 11 Jan 2026 14:11:45 +0100 Subject: [PATCH 3/7] update tutorial regression --- TestCases/tutorials.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TestCases/tutorials.py b/TestCases/tutorials.py index c614e1ee333..9ccd4838265 100644 --- a/TestCases/tutorials.py +++ b/TestCases/tutorials.py @@ -347,7 +347,7 @@ def main(): # custom source: turbulent flamespeed closure (Zimont model) for PSI testcase pywrapper_psi = TestCase('psi_adiabatic') - pywrapper_psi.cfg_dir = "../Tutorials/TFC_python/adiabatic" + pywrapper_psi.cfg_dir = "../Tutorials/multiphysics/TFC_python/adiabatic" pywrapper_psi.cfg_file = "psi.cfg" pywrapper_psi.test_iter = 0 pywrapper_psi.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] @@ -356,7 +356,7 @@ def main(): # custom source: including source term for enthalpy equations pywrapper_psi_hl = TestCase('psi_enthalpy') - pywrapper_psi_hl.cfg_dir = "../Tutorials/TFC_python/enthalpy" + pywrapper_psi_hl.cfg_dir = "../Tutorials/multiphysics/TFC_python/enthalpy" pywrapper_psi_hl.cfg_file = "psi.cfg" pywrapper_psi_hl.test_iter = 0 pywrapper_psi_hl.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] @@ -365,7 +365,7 @@ def main(): # custom source: including custom BC and source term pywrapper_psi_quench = TestCase('psi_quench') - pywrapper_psi_quench.cfg_dir = "../Tutorials/TFC_python/quench" + pywrapper_psi_quench.cfg_dir = "../Tutorials/multiphysics/TFC_python/quench" pywrapper_psi_quench.cfg_file = "psi.cfg" pywrapper_psi_quench.test_iter = 0 pywrapper_psi_quench.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] From c5ecc58647f83fc53bdcde8983719f120fe90791 Mon Sep 17 00:00:00 2001 From: bigfooted Date: Sun, 11 Jan 2026 15:47:44 +0100 Subject: [PATCH 4/7] update github workflow --- .github/workflows/regression.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index b7d4c3530d0..f0be2eb92e0 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -211,7 +211,7 @@ jobs: uses: docker://ghcr.io/su2code/su2/test-su2:250717-1402 with: # -t -c - args: -b ${{github.ref}} -t develop -c develop -s ${{matrix.testscript}} + args: -b ${{github.ref}} -t TFC_python -c develop -s ${{matrix.testscript}} - name: Cleanup uses: docker://ghcr.io/su2code/su2/test-su2:250717-1402 with: From 1072f338616bf896633ab864d33e07e6672c7246 Mon Sep 17 00:00:00 2001 From: bigfooted Date: Sun, 11 Jan 2026 16:21:23 +0100 Subject: [PATCH 5/7] update github workflow --- TestCases/tutorials.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/TestCases/tutorials.py b/TestCases/tutorials.py index 9ccd4838265..267b1ab8126 100644 --- a/TestCases/tutorials.py +++ b/TestCases/tutorials.py @@ -349,7 +349,7 @@ def main(): pywrapper_psi = TestCase('psi_adiabatic') pywrapper_psi.cfg_dir = "../Tutorials/multiphysics/TFC_python/adiabatic" pywrapper_psi.cfg_file = "psi.cfg" - pywrapper_psi.test_iter = 0 + pywrapper_psi.test_iter = 5 pywrapper_psi.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] pywrapper_psi.command = TestCase.Command("mpirun -np 2", "python", "run.py") test_list.append(pywrapper_psi) @@ -358,8 +358,8 @@ def main(): pywrapper_psi_hl = TestCase('psi_enthalpy') pywrapper_psi_hl.cfg_dir = "../Tutorials/multiphysics/TFC_python/enthalpy" pywrapper_psi_hl.cfg_file = "psi.cfg" - pywrapper_psi_hl.test_iter = 0 - pywrapper_psi_hl.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] + pywrapper_psi_hl.test_iter = 5 + pywrapper_psi_hl.test_vals = [-6.211126, -4.025898, -5.405635, -3.743101, -1.314498, -3.948690] pywrapper_psi_hl.command = TestCase.Command("mpirun -np 2", "python", "run.py") test_list.append(pywrapper_psi_hl) @@ -367,8 +367,8 @@ def main(): pywrapper_psi_quench = TestCase('psi_quench') pywrapper_psi_quench.cfg_dir = "../Tutorials/multiphysics/TFC_python/quench" pywrapper_psi_quench.cfg_file = "psi.cfg" - pywrapper_psi_quench.test_iter = 0 - pywrapper_psi_quench.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] + pywrapper_psi_quench.test_iter = 5 + pywrapper_psi_quench.test_vals = [-7.370108, -6.688806, -7.839519, -4.086479, -1.223314, -4.022876] pywrapper_psi_quench.command = TestCase.Command("mpirun -np 2", "python", "run.py") test_list.append(pywrapper_psi_quench) From 1c8a579d1257d96a21949b0253483766174ac818 Mon Sep 17 00:00:00 2001 From: bigfooted Date: Sun, 11 Jan 2026 17:29:54 +0100 Subject: [PATCH 6/7] update regression --- TestCases/tutorials.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TestCases/tutorials.py b/TestCases/tutorials.py index 267b1ab8126..7d77dbf252d 100644 --- a/TestCases/tutorials.py +++ b/TestCases/tutorials.py @@ -349,7 +349,7 @@ def main(): pywrapper_psi = TestCase('psi_adiabatic') pywrapper_psi.cfg_dir = "../Tutorials/multiphysics/TFC_python/adiabatic" pywrapper_psi.cfg_file = "psi.cfg" - pywrapper_psi.test_iter = 5 + pywrapper_psi.test_iter = 0 pywrapper_psi.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] pywrapper_psi.command = TestCase.Command("mpirun -np 2", "python", "run.py") test_list.append(pywrapper_psi) @@ -358,7 +358,7 @@ def main(): pywrapper_psi_hl = TestCase('psi_enthalpy') pywrapper_psi_hl.cfg_dir = "../Tutorials/multiphysics/TFC_python/enthalpy" pywrapper_psi_hl.cfg_file = "psi.cfg" - pywrapper_psi_hl.test_iter = 5 + pywrapper_psi_hl.test_iter = 0 pywrapper_psi_hl.test_vals = [-6.211126, -4.025898, -5.405635, -3.743101, -1.314498, -3.948690] pywrapper_psi_hl.command = TestCase.Command("mpirun -np 2", "python", "run.py") test_list.append(pywrapper_psi_hl) @@ -367,7 +367,7 @@ def main(): pywrapper_psi_quench = TestCase('psi_quench') pywrapper_psi_quench.cfg_dir = "../Tutorials/multiphysics/TFC_python/quench" pywrapper_psi_quench.cfg_file = "psi.cfg" - pywrapper_psi_quench.test_iter = 5 + pywrapper_psi_quench.test_iter = 0 pywrapper_psi_quench.test_vals = [-7.370108, -6.688806, -7.839519, -4.086479, -1.223314, -4.022876] pywrapper_psi_quench.command = TestCase.Command("mpirun -np 2", "python", "run.py") test_list.append(pywrapper_psi_quench) From 840b6a5ca355ce88966c0c2f5e2bf113c9c97b17 Mon Sep 17 00:00:00 2001 From: bigfooted Date: Sun, 11 Jan 2026 18:56:05 +0100 Subject: [PATCH 7/7] update regression --- TestCases/tutorials.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TestCases/tutorials.py b/TestCases/tutorials.py index 7d77dbf252d..a9d875465dd 100644 --- a/TestCases/tutorials.py +++ b/TestCases/tutorials.py @@ -350,7 +350,7 @@ def main(): pywrapper_psi.cfg_dir = "../Tutorials/multiphysics/TFC_python/adiabatic" pywrapper_psi.cfg_file = "psi.cfg" pywrapper_psi.test_iter = 0 - pywrapper_psi.test_vals = [-3.415653, -2.221781, -3.107330, -2.569248, 0.531838, -3.796447] + pywrapper_psi.test_vals = [-2.682653, -0.994981, -2.221252, -2.401462, 3.597559, -3.369865] pywrapper_psi.command = TestCase.Command("mpirun -np 2", "python", "run.py") test_list.append(pywrapper_psi)