Skip to content

Commit 3f53bfa

Browse files
committed
regression testing not working locally, pushing to github
1 parent a240d26 commit 3f53bfa

10 files changed

Lines changed: 49 additions & 48 deletions

File tree

TestCases/ddes/flatplate/ddes_flatplate.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ UNST_CFL_NUMBER= 0.0
8282
%
8383
% Number of internal iterations (dual time method)
8484
INNER_ITER= 20
85+
8586
% -------------------- BOUNDARY CONDITION DEFINITION --------------------------%
8687
%
8788
% Navier-Stokes wall boundary marker(s) (NONE = no marker)
@@ -226,4 +227,4 @@ SURFACE_ADJ_FILENAME= surface_adjoint
226227
OUTPUT_WRT_FREQ= 1000
227228
%
228229
% Screen output
229-
SCREEN_OUTPUT= (TIME_ITER, INNER_ITER, RMS_DENSITY, RMS_NU_TILDE, LIFT, DRAG, TOTAL_HEATFLUX)
230+
SCREEN_OUTPUT= (INNER_ITER, RMS_DENSITY, RMS_NU_TILDE, LIFT, DRAG, TOTAL_HEATFLUX)

TestCases/incomp_navierstokes/bend/lam_bend.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,4 +255,4 @@ SURFACE_ADJ_FILENAME= surface_adjoint
255255
% Writing solution file frequency
256256
OUTPUT_WRT_FREQ= 1000
257257
%
258-
SCREEN_OUTPUT= (INNER_ITER, RMS_PRESSURE, RMS_VELOCITY-X, LIFT, DRAG, TOTAL_HEATFLUX)
258+
SCREEN_OUTPUT= (INNER_ITER, RMS_PRESSURE, RMS_VELOCITY-X, LIFT, DRAG)

TestCases/incomp_navierstokes/cylinder/incomp_cylinder.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,4 @@ SURFACE_FILENAME= surface_flow
182182
OUTPUT_WRT_FREQ= 100
183183
%
184184
% Screen output fields
185-
SCREEN_OUTPUT= (INNER_ITER, RMS_PRESSURE, RMS_VELOCITY-X, LIFT, DRAG, TOTAL_HEATFLUX)
185+
SCREEN_OUTPUT= (INNER_ITER, RMS_PRESSURE, RMS_VELOCITY-X, LIFT, DRAG)

TestCases/incomp_rans/naca0012/naca0012_SST_SUST.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,5 +242,5 @@ OUTPUT_WRT_FREQ= 100
242242
%
243243
%
244244
% Screen output fields
245-
SCREEN_OUTPUT= (INNER_ITER, RMS_PRESSURE, RMS_TKE, RMS_DISSIPATION, LIFT, DRAG, TOTAL_HEATFLUX)
245+
SCREEN_OUTPUT= (INNER_ITER, RMS_PRESSURE, RMS_TKE, RMS_DISSIPATION, LIFT, DRAG)
246246

TestCases/parallel_regression.py

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ def main():
9797
visc_cone.cfg_dir = "nonequilibrium/axi_visccone"
9898
visc_cone.cfg_file = "axi_visccone.cfg"
9999
visc_cone.test_iter = 10
100-
visc_cone.test_vals = [-5.222278, -5.746529, -20.569425, -20.633787, -20.547644, -1.928717, -2.247306, 1.255759, -3.208374, 32633.000000]
101-
visc_cone.test_vals_aarch64 = [-5.222267, -5.746522, -20.569408, -20.633783, -20.546393, -1.928714, -2.247317, 1.255761, -3.208360, 32633.000000]
100+
visc_cone.test_vals = [-5.222278, -5.746529, -20.569425, -20.633787, -20.547644, 1.255759, -3.208374, -0.016010, 0.093459, 32633.000000]
101+
visc_cone.test_vals_aarch64 = [-5.222278, -5.746529, -20.569425, -20.633787, -20.547644, 1.255759, -3.208374, -0.016010, 0.093459, 32633.000000]
102102
visc_cone.su2_exec = "mpirun -n 2 SU2_CFD"
103103
visc_cone.timeout = 1600
104104
visc_cone.new_output = True
@@ -243,7 +243,7 @@ def main():
243243
cylinder.cfg_dir = "navierstokes/cylinder"
244244
cylinder.cfg_file = "lam_cylinder.cfg"
245245
cylinder.test_iter = 25
246-
cylinder.test_vals = [-6.754517, -1.286785, -0.213640, 0.706519]
246+
cylinder.test_vals = [-6.754517, -1.286785, -0.213640, 0.706519, 0.158870]
247247
cylinder.su2_exec = "parallel_computation.py -f"
248248
cylinder.timeout = 1600
249249
cylinder.tol = 0.00001
@@ -254,7 +254,7 @@ def main():
254254
cylinder_lowmach.cfg_dir = "navierstokes/cylinder"
255255
cylinder_lowmach.cfg_file = "cylinder_lowmach.cfg"
256256
cylinder_lowmach.test_iter = 25
257-
cylinder_lowmach.test_vals = [-6.858484, -1.396528, -1.854558, 110.033249, 0.0]
257+
cylinder_lowmach.test_vals = [-6.858484, -1.396528, -1.854558, 110.033249, 0.001951]
258258
cylinder_lowmach.su2_exec = "parallel_computation.py -f"
259259
cylinder_lowmach.timeout = 1600
260260
cylinder_lowmach.tol = 0.00001
@@ -265,7 +265,7 @@ def main():
265265
poiseuille.cfg_dir = "navierstokes/poiseuille"
266266
poiseuille.cfg_file = "lam_poiseuille.cfg"
267267
poiseuille.test_iter = 10
268-
poiseuille.test_vals = [-5.050847, 0.648238, 0.000200, 13.639839]
268+
poiseuille.test_vals = [-5.050847, 0.648238, 0.000200, 13.639839, -2.047000]
269269
poiseuille.su2_exec = "parallel_computation.py -f"
270270
poiseuille.timeout = 1600
271271
poiseuille.tol = 0.001
@@ -292,7 +292,7 @@ def main():
292292
rae2822_sa.cfg_dir = "rans/rae2822"
293293
rae2822_sa.cfg_file = "turb_SA_RAE2822.cfg"
294294
rae2822_sa.test_iter = 20
295-
rae2822_sa.test_vals = [-2.004689, -5.265793, 0.809463, 0.062016, 0.0]
295+
rae2822_sa.test_vals = [-2.004689, -5.265793, 0.809463, 0.062016, -80577.000000]
296296
rae2822_sa.su2_exec = "parallel_computation.py -f"
297297
rae2822_sa.timeout = 1600
298298
rae2822_sa.tol = 0.00001
@@ -303,7 +303,7 @@ def main():
303303
rae2822_sst.cfg_dir = "rans/rae2822"
304304
rae2822_sst.cfg_file = "turb_SST_RAE2822.cfg"
305305
rae2822_sst.test_iter = 20
306-
rae2822_sst.test_vals = [-0.510641, 4.870022, 0.813722, 0.062439, 0.0]
306+
rae2822_sst.test_vals = [-0.510641, 4.870022, 0.813722, 0.062439, -80115.000000]
307307
rae2822_sst.su2_exec = "parallel_computation.py -f"
308308
rae2822_sst.timeout = 1600
309309
rae2822_sst.tol = 0.00001
@@ -347,7 +347,7 @@ def main():
347347
turb_oneram6.cfg_dir = "rans/oneram6"
348348
turb_oneram6.cfg_file = "turb_ONERAM6.cfg"
349349
turb_oneram6.test_iter = 10
350-
turb_oneram6.test_vals = [-2.388839, -6.689413, 0.230321, 0.157640] #last 4 columns
350+
turb_oneram6.test_vals = [-2.388839, -6.689413, 0.230321, 0.157640, -32539.000000]
351351
turb_oneram6.su2_exec = "parallel_computation.py -f"
352352
turb_oneram6.timeout = 3200
353353
turb_oneram6.tol = 0.00001
@@ -369,7 +369,7 @@ def main():
369369
turb_naca0012_sa.cfg_dir = "rans/naca0012"
370370
turb_naca0012_sa.cfg_file = "turb_NACA0012_sa.cfg"
371371
turb_naca0012_sa.test_iter = 10
372-
turb_naca0012_sa.test_vals = [-8.621456, -10.378269, 1.064502, 0.019710, 20.000000, -1.811700, 20.000000, -5.171326, 0.0]
372+
turb_naca0012_sa.test_vals = [-8.621456, -10.378269, 1.064502, 0.019710, 20.000000, -1.811700, 20.000000, -5.171326, -46.506000]
373373
turb_naca0012_sa.su2_exec = "parallel_computation.py -f"
374374
turb_naca0012_sa.timeout = 3200
375375
turb_naca0012_sa.tol = 0.00001
@@ -380,7 +380,7 @@ def main():
380380
turb_naca0012_sst.cfg_dir = "rans/naca0012"
381381
turb_naca0012_sst.cfg_file = "turb_NACA0012_sst.cfg"
382382
turb_naca0012_sst.test_iter = 10
383-
turb_naca0012_sst.test_vals = [-11.456387, -12.800055, -5.865784, 1.049989, 0.019163, -1.838252, 0.0]
383+
turb_naca0012_sst.test_vals = [-11.456387, -12.800055, -5.865784, 1.049989, 0.019163, -1.838252, -38.694000]
384384
turb_naca0012_sst.su2_exec = "parallel_computation.py -f"
385385
turb_naca0012_sst.timeout = 3200
386386
turb_naca0012_sst.tol = 0.00001
@@ -519,7 +519,7 @@ def main():
519519
inc_lam_cylinder.cfg_dir = "incomp_navierstokes/cylinder"
520520
inc_lam_cylinder.cfg_file = "incomp_cylinder.cfg"
521521
inc_lam_cylinder.test_iter = 10
522-
inc_lam_cylinder.test_vals = [-4.004072, -3.194881, -0.076553, 7.780048, 0.0]
522+
inc_lam_cylinder.test_vals = [-4.004072, -3.194881, -0.076553, 7.780048]
523523
inc_lam_cylinder.su2_exec = "parallel_computation.py -f"
524524
inc_lam_cylinder.timeout = 1600
525525
inc_lam_cylinder.tol = 0.00001
@@ -541,7 +541,7 @@ def main():
541541
inc_poly_cylinder.cfg_dir = "incomp_navierstokes/cylinder"
542542
inc_poly_cylinder.cfg_file = "poly_cylinder.cfg"
543543
inc_poly_cylinder.test_iter = 20
544-
inc_poly_cylinder.test_vals = [-7.791831, -2.062292, 0.013040, 1.913997]
544+
inc_poly_cylinder.test_vals = [-7.791831, -2.062292, 0.013040, 1.913997, -171.120000]
545545
inc_poly_cylinder.su2_exec = "parallel_computation.py -f"
546546
inc_poly_cylinder.timeout = 1600
547547
inc_poly_cylinder.tol = 0.00001
@@ -552,7 +552,7 @@ def main():
552552
inc_lam_bend.cfg_dir = "incomp_navierstokes/bend"
553553
inc_lam_bend.cfg_file = "lam_bend.cfg"
554554
inc_lam_bend.test_iter = 10
555-
inc_lam_bend.test_vals = [-3.447746, -3.085237, -0.020816, 1.147373, 0.0]
555+
inc_lam_bend.test_vals = [-3.447746, -3.085237, -0.020816, 1.147373]
556556
inc_lam_bend.su2_exec = "mpirun -n 2 SU2_CFD"
557557
inc_lam_bend.timeout = 1600
558558
inc_lam_bend.tol = 0.00001
@@ -600,7 +600,7 @@ def main():
600600
inc_turb_naca0012_sst_sust.cfg_dir = "incomp_rans/naca0012"
601601
inc_turb_naca0012_sst_sust.cfg_file = "naca0012_SST_SUST.cfg"
602602
inc_turb_naca0012_sst_sust.test_iter = 20
603-
inc_turb_naca0012_sst_sust.test_vals = [-7.276430, 0.145859, -0.000001, 0.312020, 0.0]
603+
inc_turb_naca0012_sst_sust.test_vals = [-7.276430, 0.145859, -0.000001, 0.312020]
604604
inc_turb_naca0012_sst_sust.su2_exec = "parallel_computation.py -f"
605605
inc_turb_naca0012_sst_sust.timeout = 1600
606606
inc_turb_naca0012_sst_sust.tol = 0.00001
@@ -714,8 +714,8 @@ def main():
714714
turbmod_sa_neg_rae2822.cfg_dir = "turbulence_models/sa/rae2822"
715715
turbmod_sa_neg_rae2822.cfg_file = "turb_SA_NEG_RAE2822.cfg"
716716
turbmod_sa_neg_rae2822.test_iter = 10
717-
turbmod_sa_neg_rae2822.test_vals = [-1.355605, 1.464131, 1.314243, -1.997959, 1.135210, 0.398906, 0.0]
718-
turbmod_sa_neg_rae2822.test_vals_aarch64 = [-1.298704, 1.476866, 1.303138, 0.694951, 1.397494, 0.534572, 0.0]
717+
turbmod_sa_neg_rae2822.test_vals = [-1.355605, 1.464131, 1.314243, -1.997959, 1.135210, 0.398906, -87762.000000]
718+
turbmod_sa_neg_rae2822.test_vals_aarch64 = [-1.298704, 1.476866, 1.303138, 0.694951, 1.397494, 0.534572, -87762.000000]
719719
turbmod_sa_neg_rae2822.su2_exec = "mpirun -n 2 SU2_CFD"
720720
turbmod_sa_neg_rae2822.timeout = 1600
721721
turbmod_sa_neg_rae2822.new_output = True
@@ -779,7 +779,7 @@ def main():
779779
schubauer_klebanoff_transition.cfg_dir = "transition/Schubauer_Klebanoff"
780780
schubauer_klebanoff_transition.cfg_file = "transitional_BC_model_ConfigFile.cfg"
781781
schubauer_klebanoff_transition.test_iter = 10
782-
schubauer_klebanoff_transition.test_vals = [-7.994740, -13.240225, 0.000046, 0.007987, 0.0]
782+
schubauer_klebanoff_transition.test_vals = [-7.994740, -13.240225, 0.000046, 0.007987]
783783
schubauer_klebanoff_transition.su2_exec = "parallel_computation.py -f"
784784
schubauer_klebanoff_transition.timeout = 1600
785785
schubauer_klebanoff_transition.tol = 0.00001
@@ -1044,7 +1044,7 @@ def main():
10441044
square_cylinder.cfg_dir = "unsteady/square_cylinder"
10451045
square_cylinder.cfg_file = "turb_square.cfg"
10461046
square_cylinder.test_iter = 3
1047-
square_cylinder.test_vals = [-1.162664, 0.066378, 1.399789, 2.220404, 1.399743, 2.218605, 0.0]
1047+
square_cylinder.test_vals = [-1.162664, 0.066378, 1.399789, 2.220404, 1.399743, 2.218605, -0.453170]
10481048
square_cylinder.su2_exec = "parallel_computation.py -f"
10491049
square_cylinder.timeout = 1600
10501050
square_cylinder.tol = 0.00001
@@ -1080,7 +1080,7 @@ def main():
10801080
ddes_flatplate.cfg_dir = "ddes/flatplate"
10811081
ddes_flatplate.cfg_file = "ddes_flatplate.cfg"
10821082
ddes_flatplate.test_iter = 10
1083-
ddes_flatplate.test_vals = [-2.714758, -5.883004, -0.215005, 0.023783, 0.0] #last 4 columns
1083+
ddes_flatplate.test_vals = [-2.714758, -5.883004, -0.215005, 0.023783, -618.160000]
10841084
ddes_flatplate.su2_exec = "parallel_computation.py -f"
10851085
ddes_flatplate.timeout = 1600
10861086
ddes_flatplate.tol = 0.00001
@@ -1453,7 +1453,7 @@ def main():
14531453
cht_compressible.cfg_dir = "coupled_cht/comp_2d"
14541454
cht_compressible.cfg_file = "cht_2d_3cylinders.cfg"
14551455
cht_compressible.test_iter = 10
1456-
cht_compressible.test_vals = [-4.256032, -0.532728, -0.532729, -0.532728, 0.0]
1456+
cht_compressible.test_vals = [-4.256032, -0.532728, -0.532729, -0.532728, -0.532728]
14571457
cht_compressible.su2_exec = "SU2_CFD"
14581458
cht_compressible.timeout = 1600
14591459
cht_compressible.multizone = True

TestCases/rans/naca0012/turb_NACA0012_sa.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,4 +240,4 @@ OUTPUT_WRT_FREQ= 10000
240240
%
241241
%
242242
% Screen output fields
243-
SCREEN_OUTPUT=(INNER_ITER, RMS_DENSITY, RMS_NU_TILDE, LIFT, DRAG, LINSOL_ITER, LINSOL_RESIDUAL, LINSOL_ITER_TURB, LINSOL_RESIDUAL_TURB)
243+
SCREEN_OUTPUT=(INNER_ITER, RMS_DENSITY, RMS_NU_TILDE, LIFT, DRAG, LINSOL_ITER, LINSOL_RESIDUAL, LINSOL_ITER_TURB, LINSOL_RESIDUAL_TURB, TOTAL_HEATFLUX)

TestCases/rans/naca0012/turb_NACA0012_sst.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,5 +245,5 @@ OUTPUT_WRT_FREQ= 10000
245245
%
246246
%
247247
% Screen output fields
248-
SCREEN_OUTPUT= (INNER_ITER, RMS_DENSITY, RMS_TKE, RMS_DISSIPATION, LIFT, DRAG, LINSOL_RESIDUAL)
248+
SCREEN_OUTPUT= (INNER_ITER, RMS_DENSITY, RMS_TKE, RMS_DISSIPATION, LIFT, DRAG, LINSOL_RESIDUAL, TOTAL_HEATFLUX)
249249
OUTPUT_FILES= (RESTART_ASCII, PARAVIEW, SURFACE_PARAVIEW)

0 commit comments

Comments
 (0)