Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update turbomachinery testcases and regression tests #2158

Merged
merged 25 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0df5596
adding 3D mixing-plane Aachen turbine config files
Nov 3, 2023
e138511
path to mesh file changed
Nov 3, 2023
00ce99f
adding Aachen turbine to parallel_regression
Nov 6, 2023
65f8388
adding Aachen turbine to serial_regression
Nov 6, 2023
b87c5bf
adding Aachen restart config
Nov 6, 2023
b3c2389
mesh file name in configs updated
Nov 10, 2023
9cef188
fixing the iteration number
Nov 28, 2023
55bc785
fixing test values in regression tests
Nov 29, 2023
dadedf4
Update TestCases/turbomachinery/Aachen_turbine/aachen_3D_MP.cfg
alecappiello Nov 29, 2023
2e6ec42
Merge branch 'develop' into develop
alecappiello Dec 20, 2023
010a174
Merge branch 'develop' into develop
alecappiello Mar 12, 2024
cd68e3b
Update aachen_3D_MP.cfg
joshkellyjak Mar 12, 2024
6bc54d2
Update aachen_3D_MP_restart.cfg
alecappiello Mar 12, 2024
5d2a61e
Update serial_regression.py
alecappiello Mar 13, 2024
d9c7a7c
Update parallel_regression.py
alecappiello Mar 13, 2024
501e0b6
Update parallel_regression.py
alecappiello Mar 13, 2024
4efad8b
Update parallel_regression.py
alecappiello Mar 14, 2024
53f9b2a
Update aachen_3D_MP_restart.cfg
alecappiello Mar 14, 2024
3d78a44
Update aachen_3D_MP.cfg
alecappiello Mar 14, 2024
a0a7fc6
Delete TestCases/turbomachinery/Aachen_turbine/aachen_3D_MP.cfg
alecappiello Mar 15, 2024
a4030aa
Update aachen_3D_MP_restart.cfg
alecappiello Mar 15, 2024
f33b3ad
Update aachen_3D_MP_restart.cfg
alecappiello Mar 15, 2024
8b039ab
Update TestCases/turbomachinery/Aachen_turbine/aachen_3D_MP_restart.cfg
pcarruscag Mar 15, 2024
4f32743
Merge branch 'su2code:develop' into develop
alecappiello Mar 18, 2024
7eff50d
Merge branch 'develop' into develop
alecappiello Apr 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions TestCases/parallel_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -1044,6 +1044,14 @@ def main():
### Turbomachinery ###
######################################

# Aachen Turbine restart
Aachen_3D_restart = TestCase('aachen_turbine_restart')
Aachen_3D_restart.cfg_dir = "turbomachinery/Aachen_turbine"
Aachen_3D_restart.cfg_file = "aachen_3D_MP_restart.cfg"
Aachen_3D_restart.test_iter = 5
Aachen_3D_restart.test_vals = [-15.329206, -15.008622, -15.078888, -13.841072, -12.727840, -9.975729]
alecappiello marked this conversation as resolved.
Show resolved Hide resolved
test_list.append(Aachen_3D_restart)

# Jones APU Turbocharger restart
Jones_tc_restart = TestCase('jones_turbocharger_restart')
Jones_tc_restart.cfg_dir = "turbomachinery/APU_turbocharger"
Expand Down
8 changes: 8 additions & 0 deletions TestCases/serial_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -852,6 +852,14 @@ def main():
### Turbomachinery ###
######################################

# Aachen Turbine restart
Aachen_3D_restart = TestCase('aachen_turbine_restart')
Aachen_3D_restart.cfg_dir = "turbomachinery/Aachen_turbine"
Aachen_3D_restart.cfg_file = "aachen_3D_MP_restart.cfg"
Aachen_3D_restart.test_iter = 5
Aachen_3D_restart.test_vals = [-15.137167, -14.551444, -15.078894, -13.486154, -12.724891, -9.717612]
test_list.append(Aachen_3D_restart)

# Jones APU Turbocharger restart
Jones_tc_restart = TestCase('jones_turbocharger_restart')
Jones_tc_restart.cfg_dir = "turbomachinery/APU_turbocharger"
Expand Down
Loading