Skip to content

Commit 025b436

Browse files
committed
update parallel_regression, restarts still need to be regenerated
1 parent 0c02d88 commit 025b436

1 file changed

Lines changed: 16 additions & 7 deletions

File tree

TestCases/parallel_regression.py

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -390,9 +390,18 @@ def main():
390390
#######################################
391391

392392
# Axisymmetric air nozzle (transonic)
393-
axi_rans_air_nozzle_restart = TestCase('axi_rans_air_nozzle')
393+
axi_rans_air_nozzle = TestCase('axi_rans_air_nozzle')
394+
axi_rans_air_nozzle.cfg_dir = "axisymmetric_rans/air_nozzle"
395+
axi_rans_air_nozzle.cfg_file = "air_nozzle.cfg"
396+
axi_rans_air_nozzle.test_iter = 10
397+
axi_rans_air_nozzle.test_vals = [-12.096361, -6.636587, -8.786643, -2.399099, -1938.200000]
398+
axi_rans_air_nozzle.tol = 0.0001
399+
test_list.append(axi_rans_air_nozzle)
400+
401+
# Axisymmetric air nozzle (transonic) restart
402+
axi_rans_air_nozzle_restart = TestCase('axi_rans_air_nozzle_restart')
394403
axi_rans_air_nozzle_restart.cfg_dir = "axisymmetric_rans/air_nozzle"
395-
axi_rans_air_nozzle_restart.cfg_file = "air_nozzle.cfg"
404+
axi_rans_air_nozzle_restart.cfg_file = "air_nozzle_restart.cfg"
396405
axi_rans_air_nozzle_restart.test_iter = 10
397406
axi_rans_air_nozzle_restart.test_vals = [-12.096361, -6.636587, -8.786643, -2.399099, -1938.200000]
398407
axi_rans_air_nozzle_restart.tol = 0.0001
@@ -923,7 +932,7 @@ def main():
923932
Jones_tc.cfg_dir = "turbomachinery/APU_turbocharger"
924933
Jones_tc.cfg_file = "Jones.cfg"
925934
Jones_tc.test_iter = 5
926-
Jones_tc.test_vals = [-5.283772, 0.374024, 72.236800, 1.276420]
935+
Jones_tc.test_vals = [5.283772, 0.374024, 72.236800, 1.276420]
927936
Jones_tc.new_output = False
928937
test_list.append(Jones_tc)
929938

@@ -932,7 +941,7 @@ def main():
932941
Jones_tc_restart.cfg_dir = "turbomachinery/APU_turbocharger"
933942
Jones_tc_restart.cfg_file = "Jones_rst.cfg"
934943
Jones_tc_restart.test_iter = 5
935-
Jones_tc_restart.test_vals = [-4.625155, -1.568708, 33.994680, 10.181950]
944+
Jones_tc_restart.test_vals = [-4.239853, -1.473722, 33.994770, 10.181660]
936945
Jones_tc_restart.new_output = False
937946
test_list.append(Jones_tc_restart)
938947

@@ -959,7 +968,7 @@ def main():
959968
transonic_stator_restart.cfg_dir = "turbomachinery/transonic_stator_2D"
960969
transonic_stator_restart.cfg_file = "transonic_stator_rst.cfg"
961970
transonic_stator_restart.test_iter = 20
962-
transonic_stator_restart.test_vals = [-6.628529, -0.613969, 5.002986, 0.002951]
971+
transonic_stator_restart.test_vals = [-3.309626, 0.208402, 5.003076, 0.002950]
963972
transonic_stator_restart.new_output = False
964973
test_list.append(transonic_stator_restart)
965974

@@ -1190,7 +1199,7 @@ def main():
11901199
sp_pinArray_3d_cht_mf_hf_tp.cfg_dir = "incomp_navierstokes/streamwise_periodic/chtPinArray_3d"
11911200
sp_pinArray_3d_cht_mf_hf_tp.cfg_file = "configMaster.cfg"
11921201
sp_pinArray_3d_cht_mf_hf_tp.test_iter = 30
1193-
sp_pinArray_3d_cht_mf_hf_tp.test_vals = [-13.374306, -7.476945, -7.025285, -0.009675, 99.879812, 419.200000, 0.0]
1202+
sp_pinArray_3d_cht_mf_hf_tp.test_vals = [-3.773085, -4.220555, -4.811282, -0.009675, 99.879858, 419.200000, 0.000000]
11941203
sp_pinArray_3d_cht_mf_hf_tp.test_vals_aarch64 = [-13.400623, -7.476945, -7.025285, -0.009675, 99.879812, 419.200000, 0.0]
11951204
sp_pinArray_3d_cht_mf_hf_tp.multizone = True
11961205
test_list.append(sp_pinArray_3d_cht_mf_hf_tp)
@@ -1223,7 +1232,7 @@ def main():
12231232
pywrapper_square_cylinder.cfg_dir = "unsteady/square_cylinder"
12241233
pywrapper_square_cylinder.cfg_file = "turb_square.cfg"
12251234
pywrapper_square_cylinder.test_iter = 10
1226-
pywrapper_square_cylinder.test_vals = [-1.158117, 0.067945, 1.399789, 2.220404, 1.399743, 2.218605, -0.453170]
1235+
pywrapper_square_cylinder.test_vals = [-1.136553, -0.347305, 1.407915, 2.358881, 1.404192, 2.301559, -0.348120]
12271236
pywrapper_square_cylinder.command = TestCase.Command("mpirun -np 2", "SU2_CFD.py", "--parallel -f")
12281237
pywrapper_square_cylinder.unsteady = True
12291238
test_list.append(pywrapper_square_cylinder)

0 commit comments

Comments
 (0)