Skip to content

Commit db4bd4c

Browse files
authored
Merge branch 'develop' into avoid_infinite_loop
2 parents aa88aba + 18b07ac commit db4bd4c

File tree

8 files changed

+39
-38
lines changed

8 files changed

+39
-38
lines changed

SU2_CFD/include/numerics/turbulent/turb_sources.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,18 +345,19 @@ struct Bsl {
345345

346346
/*--- Limiting of \hat{S} based on "Modifications and Clarifications for the Implementation of the Spalart-Allmaras Turbulence Model"
347347
* Note 1 option c in https://turbmodels.larc.nasa.gov/spalart.html ---*/
348+
const su2double d_Sbar = (var.fv2 + nue * var.d_fv2) * var.inv_k2_d2;
348349
if (Sbar >= - c2 * var.Omega) {
349350
var.Shat = var.Omega + Sbar;
351+
var.d_Shat = d_Sbar;
350352
} else {
351353
const su2double Num = var.Omega * (c2 * c2 * var.Omega + c3 * Sbar);
352354
const su2double Den = (c3 - 2 * c2) * var.Omega - Sbar;
353355
var.Shat = var.Omega + Num / Den;
356+
var.d_Shat = d_Sbar * (c3 * var.Omega + Num / Den) / Den;
354357
}
355358
if (var.Shat <= 1e-10) {
356359
var.Shat = 1e-10;
357360
var.d_Shat = 0.0;
358-
} else {
359-
var.d_Shat = (var.fv2 + nue * var.d_fv2) * var.inv_k2_d2;
360361
}
361362
}
362363
};

TestCases/hybrid_regression.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def main():
157157
rae2822_sa.cfg_dir = "rans/rae2822"
158158
rae2822_sa.cfg_file = "turb_SA_RAE2822.cfg"
159159
rae2822_sa.test_iter = 20
160-
rae2822_sa.test_vals = [-2.020123, -5.269324, 0.807147, 0.060499, -80602.000000]
160+
rae2822_sa.test_vals = [-2.020123, -5.269339, 0.807147, 0.060499, -80603.000000]
161161
test_list.append(rae2822_sa)
162162

163163
# RAE2822 SST
@@ -181,7 +181,7 @@ def main():
181181
turb_flatplate.cfg_dir = "rans/flatplate"
182182
turb_flatplate.cfg_file = "turb_SA_flatplate.cfg"
183183
turb_flatplate.test_iter = 20
184-
turb_flatplate.test_vals = [-4.312826, -6.736053, -0.187467, 0.057454]
184+
turb_flatplate.test_vals = [-4.312725, -6.737976, -0.187467, 0.057468]
185185
test_list.append(turb_flatplate)
186186

187187
# ONERA M6 Wing
@@ -238,7 +238,7 @@ def main():
238238
propeller.cfg_dir = "rans/propeller"
239239
propeller.cfg_file = "propeller.cfg"
240240
propeller.test_iter = 10
241-
propeller.test_vals = [-3.389724, -8.409223, 0.000048, 0.056344]
241+
propeller.test_vals = [-3.389724, -8.409502, 0.000048, 0.056344]
242242
test_list.append(propeller)
243243

244244
#######################################
@@ -403,7 +403,7 @@ def main():
403403
inc_turb_naca0012.cfg_dir = "incomp_rans/naca0012"
404404
inc_turb_naca0012.cfg_file = "naca0012.cfg"
405405
inc_turb_naca0012.test_iter = 20
406-
inc_turb_naca0012.test_vals = [-4.788405, -11.039465, 0.000008, 0.309490]
406+
inc_turb_naca0012.test_vals = [-4.788405, -11.040560, 0.000008, 0.309505]
407407
test_list.append(inc_turb_naca0012)
408408

409409
# NACA0012, SST_SUST
@@ -503,7 +503,7 @@ def main():
503503
ddes_flatplate.cfg_dir = "ddes/flatplate"
504504
ddes_flatplate.cfg_file = "ddes_flatplate.cfg"
505505
ddes_flatplate.test_iter = 10
506-
ddes_flatplate.test_vals = [-2.714785, -5.882681, -0.215041, 0.023758, -617.440000]
506+
ddes_flatplate.test_vals = [-2.714786, -5.882652, -0.215041, 0.023758, -617.470000]
507507
ddes_flatplate.unsteady = True
508508
test_list.append(ddes_flatplate)
509509

TestCases/parallel_regression.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def main():
357357
rae2822_sa.cfg_dir = "rans/rae2822"
358358
rae2822_sa.cfg_file = "turb_SA_RAE2822.cfg"
359359
rae2822_sa.test_iter = 20
360-
rae2822_sa.test_vals = [-2.004689, -5.265782, 0.809463, 0.062016, -80576.000000]
360+
rae2822_sa.test_vals = [-2.004689, -5.265797, 0.809463, 0.062016, -80577.000000]
361361
test_list.append(rae2822_sa)
362362

363363
# RAE2822 SST
@@ -381,15 +381,15 @@ def main():
381381
turb_flatplate.cfg_dir = "rans/flatplate"
382382
turb_flatplate.cfg_file = "turb_SA_flatplate.cfg"
383383
turb_flatplate.test_iter = 20
384-
turb_flatplate.test_vals = [-4.293562, -6.728390, -0.187643, 0.057686]
384+
turb_flatplate.test_vals = [-4.293470, -6.730438, -0.187644, 0.057700]
385385
test_list.append(turb_flatplate)
386386

387387
# Flat plate (compressible) with species inlet
388388
turb_flatplate_species = TestCase('turb_flatplate_species')
389389
turb_flatplate_species.cfg_dir = "rans/flatplate"
390390
turb_flatplate_species.cfg_file = "turb_SA_flatplate_species.cfg"
391391
turb_flatplate_species.test_iter = 20
392-
turb_flatplate_species.test_vals = [-4.243136, -0.634954, -1.706721, 1.231179, -3.266212, 9.000000, -6.632862, 5.000000, -6.979197, 10.000000, -6.007240, 0.996237, 0.996237]
392+
turb_flatplate_species.test_vals = [-4.243064, -0.634797, -1.706652, 1.231264, -3.266203, 9.000000, -6.632972, 5.000000, -6.985977, 10.000000, -6.007208, 0.996237, 0.996237]
393393
test_list.append(turb_flatplate_species)
394394

395395
# Flat plate SST compressibility correction Wilcox
@@ -431,7 +431,7 @@ def main():
431431
turb_oneram6_nk.cfg_dir = "rans/oneram6"
432432
turb_oneram6_nk.cfg_file = "turb_ONERAM6_nk.cfg"
433433
turb_oneram6_nk.test_iter = 20
434-
turb_oneram6_nk.test_vals = [-4.843772, -4.444210, -11.473964, 0.216337, 0.049646, 5.000000, -0.613234, 23.568000]
434+
turb_oneram6_nk.test_vals = [-4.851388, -4.457414, -11.468726, 0.217228, 0.049043, 5.000000, -0.533763, 23.567000]
435435
turb_oneram6_nk.timeout = 600
436436
turb_oneram6_nk.tol = 0.0001
437437
test_list.append(turb_oneram6_nk)
@@ -441,7 +441,7 @@ def main():
441441
turb_naca0012_sa.cfg_dir = "rans/naca0012"
442442
turb_naca0012_sa.cfg_file = "turb_NACA0012_sa.cfg"
443443
turb_naca0012_sa.test_iter = 5
444-
turb_naca0012_sa.test_vals = [-12.094721, -14.685268, 1.057665, 0.022971, 20.000000, -1.692925, 20.000000, -4.037672, -44.871000]
444+
turb_naca0012_sa.test_vals = [-12.094695, -14.685268, 1.057665, 0.022971, 20.000000, -1.692967, 20.000000, -4.037673, -44.871000]
445445
turb_naca0012_sa.timeout = 3200
446446
test_list.append(turb_naca0012_sa)
447447

@@ -507,7 +507,7 @@ def main():
507507
propeller.cfg_dir = "rans/propeller"
508508
propeller.cfg_file = "propeller.cfg"
509509
propeller.test_iter = 10
510-
propeller.test_vals = [-3.389724, -8.409223, 0.000048, 0.056344]
510+
propeller.test_vals = [-3.389724, -8.409502, 0.000048, 0.056344]
511511
propeller.timeout = 3200
512512
test_list.append(propeller)
513513

@@ -638,7 +638,7 @@ def main():
638638
inc_turb_naca0012.cfg_dir = "incomp_rans/naca0012"
639639
inc_turb_naca0012.cfg_file = "naca0012.cfg"
640640
inc_turb_naca0012.test_iter = 20
641-
inc_turb_naca0012.test_vals = [-4.788596, -11.039529, -0.000002, 0.309504]
641+
inc_turb_naca0012.test_vals = [-4.788595, -11.040625, -0.000002, 0.309519]
642642
test_list.append(inc_turb_naca0012)
643643

644644
# NACA0012, SST_SUST
@@ -724,15 +724,15 @@ def main():
724724
turbmod_sa_bsl_rae2822.cfg_dir = "turbulence_models/sa/rae2822"
725725
turbmod_sa_bsl_rae2822.cfg_file = "turb_SA_BSL_RAE2822.cfg"
726726
turbmod_sa_bsl_rae2822.test_iter = 20
727-
turbmod_sa_bsl_rae2822.test_vals = [-2.004689, 0.742306, 0.497308, -5.265782, 0.809463, 0.062016]
727+
turbmod_sa_bsl_rae2822.test_vals = [-2.004689, 0.742306, 0.497308, -5.265797, 0.809463, 0.062016]
728728
test_list.append(turbmod_sa_bsl_rae2822)
729729

730730
# SA Negative
731731
turbmod_sa_neg_rae2822 = TestCase('turbmod_sa_neg_rae2822')
732732
turbmod_sa_neg_rae2822.cfg_dir = "turbulence_models/sa/rae2822"
733733
turbmod_sa_neg_rae2822.cfg_file = "turb_SA_NEG_RAE2822.cfg"
734734
turbmod_sa_neg_rae2822.test_iter = 10
735-
turbmod_sa_neg_rae2822.test_vals = [-1.466238, 3.169232, 2.756518, 4.722767, 1.120253, 0.378675, -83444.000000]
735+
turbmod_sa_neg_rae2822.test_vals = [-1.204800, 1.611685, 1.349330, 1.489602, 1.263603, 0.466487, -83309.000000]
736736
turbmod_sa_neg_rae2822.test_vals_aarch64 = [-1.359612, 1.493629, 1.218367, -1.441703, 1.248499, 0.457987, -86467.000000]
737737
test_list.append(turbmod_sa_neg_rae2822)
738738

@@ -741,7 +741,7 @@ def main():
741741
turbmod_sa_comp_rae2822.cfg_dir = "turbulence_models/sa/rae2822"
742742
turbmod_sa_comp_rae2822.cfg_file = "turb_SA_COMP_RAE2822.cfg"
743743
turbmod_sa_comp_rae2822.test_iter = 20
744-
turbmod_sa_comp_rae2822.test_vals = [-2.004687, 0.742304, 0.497309, -5.266067, 0.809467, 0.062029]
744+
turbmod_sa_comp_rae2822.test_vals = [-2.004687, 0.742304, 0.497309, -5.266084, 0.809467, 0.062029]
745745
test_list.append(turbmod_sa_comp_rae2822)
746746

747747
# SA Edwards
@@ -765,7 +765,7 @@ def main():
765765
turbmod_sa_qcr_rae2822.cfg_dir = "turbulence_models/sa/rae2822"
766766
turbmod_sa_qcr_rae2822.cfg_file = "turb_SA_QCR_RAE2822.cfg"
767767
turbmod_sa_qcr_rae2822.test_iter = 20
768-
turbmod_sa_qcr_rae2822.test_vals = [-2.004793, 0.742353, 0.497315, -5.265962, 0.807841, 0.062027]
768+
turbmod_sa_qcr_rae2822.test_vals = [-2.004793, 0.742353, 0.497315, -5.265977, 0.807841, 0.062027]
769769
test_list.append(turbmod_sa_qcr_rae2822)
770770

771771
############################
@@ -1001,7 +1001,7 @@ def main():
10011001
ddes_flatplate.cfg_dir = "ddes/flatplate"
10021002
ddes_flatplate.cfg_file = "ddes_flatplate.cfg"
10031003
ddes_flatplate.test_iter = 10
1004-
ddes_flatplate.test_vals = [-2.714785, -5.882679, -0.215041, 0.023758, -617.450000]
1004+
ddes_flatplate.test_vals = [-2.714786, -5.882637, -0.215041, 0.023758, -617.470000]
10051005
ddes_flatplate.unsteady = True
10061006
test_list.append(ddes_flatplate)
10071007

@@ -1010,7 +1010,7 @@ def main():
10101010
unst_inc_turb_naca0015_sa.cfg_dir = "unsteady/pitching_naca0015_rans_inc"
10111011
unst_inc_turb_naca0015_sa.cfg_file = "config_incomp_turb_sa.cfg"
10121012
unst_inc_turb_naca0015_sa.test_iter = 1
1013-
unst_inc_turb_naca0015_sa.test_vals = [-3.004012, -6.876220, 1.487882, 0.421861]
1013+
unst_inc_turb_naca0015_sa.test_vals = [-3.004011, -6.876250, 1.487888, 0.421869]
10141014
unst_inc_turb_naca0015_sa.unsteady = True
10151015
test_list.append(unst_inc_turb_naca0015_sa)
10161016

@@ -1530,7 +1530,7 @@ def main():
15301530
species2_primitiveVenturi_mixingmodel_viscosity.cfg_dir = "species_transport/venturi_primitive_3species"
15311531
species2_primitiveVenturi_mixingmodel_viscosity.cfg_file = "species2_primitiveVenturi_mixingmodel_viscosity.cfg"
15321532
species2_primitiveVenturi_mixingmodel_viscosity.test_iter = 50
1533-
species2_primitiveVenturi_mixingmodel_viscosity.test_vals = [-4.857397, -3.646605, -3.737462, -7.602922, -5.008846, 5.000000, -1.756226, 5.000000, -3.163353, 5.000000, -2.189723, 2.476808, 0.976999, 0.609280, 0.890529]
1533+
species2_primitiveVenturi_mixingmodel_viscosity.test_vals = [-4.857405, -3.646534, -3.737422, -7.602756, -5.008835, 5.000000, -1.756256, 5.000000, -3.163548, 5.000000, -2.189690, 2.476807, 0.977000, 0.609279, 0.890528]
15341534
test_list.append(species2_primitiveVenturi_mixingmodel_viscosity)
15351535

15361536
# 2 species (1 eq) primitive venturi mixing using mixing model including heat capacity and mass diffusivity

TestCases/parallel_regression_AD.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def main():
8383
discadj_rans_naca0012_sa.cfg_dir = "disc_adj_rans/naca0012"
8484
discadj_rans_naca0012_sa.cfg_file = "turb_NACA0012_sa.cfg"
8585
discadj_rans_naca0012_sa.test_iter = 10
86-
discadj_rans_naca0012_sa.test_vals = [-2.996963, -0.196020, 0.000004, -0.000000, 5.000000, -3.430615, 5.000000, -7.411396]
86+
discadj_rans_naca0012_sa.test_vals = [-2.996963, -0.196020, 0.000004, -0.000000, 5.000000, -3.430615, 5.000000, -7.411381]
8787
test_list.append(discadj_rans_naca0012_sa)
8888

8989
# Adjoint turbulent NACA0012 SST
@@ -256,7 +256,7 @@ def main():
256256
discadj_heat.cfg_dir = "disc_adj_heat"
257257
discadj_heat.cfg_file = "disc_adj_heat.cfg"
258258
discadj_heat.test_iter = 10
259-
discadj_heat.test_vals = [-2.117791, 0.784475, 0.000000, -0.574700]
259+
discadj_heat.test_vals = [-2.117792, 0.784117, 0.000000, -0.574700]
260260
discadj_heat.test_vals_aarch64 = [-2.226539, 0.605868, 0.000000, -6.256400]
261261
test_list.append(discadj_heat)
262262

TestCases/serial_regression.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def main():
218218
rae2822_sa.cfg_dir = "rans/rae2822"
219219
rae2822_sa.cfg_file = "turb_SA_RAE2822.cfg"
220220
rae2822_sa.test_iter = 20
221-
rae2822_sa.test_vals = [-2.020123, -5.269324, 0.807147, 0.060499, -80602.000000]
221+
rae2822_sa.test_vals = [-2.020123, -5.269339, 0.807147, 0.060499, -80603.000000]
222222
test_list.append(rae2822_sa)
223223

224224
# RAE2822 SST
@@ -242,7 +242,7 @@ def main():
242242
turb_flatplate.cfg_dir = "rans/flatplate"
243243
turb_flatplate.cfg_file = "turb_SA_flatplate.cfg"
244244
turb_flatplate.test_iter = 20
245-
turb_flatplate.test_vals = [-4.312826, -6.736053, -0.187467, 0.057454]
245+
turb_flatplate.test_vals = [-4.312724, -6.737976, -0.187467, 0.057468]
246246
test_list.append(turb_flatplate)
247247

248248
# FLAT PLATE, WALL FUNCTIONS, COMPRESSIBLE SST
@@ -258,7 +258,7 @@ def main():
258258
turb_wallfunction_flatplate_sa.cfg_dir = "wallfunctions/flatplate/compressible_SA"
259259
turb_wallfunction_flatplate_sa.cfg_file = "turb_SA_flatplate.cfg"
260260
turb_wallfunction_flatplate_sa.test_iter = 10
261-
turb_wallfunction_flatplate_sa.test_vals = [-4.460537, -2.033605, -2.117564, 0.889626, -5.381903, 10.000000, -1.517487, 0.034212, 0.002636]
261+
turb_wallfunction_flatplate_sa.test_vals = [-4.460657, -2.033641, -2.118149, 0.889562, -5.382249, 10.000000, -1.517453, 0.034213, 0.002636]
262262
test_list.append(turb_wallfunction_flatplate_sa)
263263

264264
# ONERA M6 Wing
@@ -275,7 +275,7 @@ def main():
275275
turb_naca0012_sa.cfg_dir = "rans/naca0012"
276276
turb_naca0012_sa.cfg_file = "turb_NACA0012_sa.cfg"
277277
turb_naca0012_sa.test_iter = 5
278-
turb_naca0012_sa.test_vals = [-12.091696, -14.685322, 1.057665, 0.022971, 20.000000, -2.686306, 20.000000, -4.459916, -44.871000]
278+
turb_naca0012_sa.test_vals = [-12.091778, -14.685322, 1.057665, 0.022971, 20.000000, -2.686203, 20.000000, -4.459916, -44.871000]
279279
turb_naca0012_sa.timeout = 3200
280280
test_list.append(turb_naca0012_sa)
281281

@@ -322,7 +322,7 @@ def main():
322322
propeller.cfg_dir = "rans/propeller"
323323
propeller.cfg_file = "propeller.cfg"
324324
propeller.test_iter = 10
325-
propeller.test_vals = [-3.389724, -8.409223, 0.000048, 0.056344]
325+
propeller.test_vals = [-3.389724, -8.409502, 0.000048, 0.056344]
326326
propeller.timeout = 3200
327327
test_list.append(propeller)
328328

@@ -441,7 +441,7 @@ def main():
441441
inc_turb_naca0012.cfg_dir = "incomp_rans/naca0012"
442442
inc_turb_naca0012.cfg_file = "naca0012.cfg"
443443
inc_turb_naca0012.test_iter = 20
444-
inc_turb_naca0012.test_vals = [-4.788496, -11.039482, 0.000023, 0.309488]
444+
inc_turb_naca0012.test_vals = [-4.788495, -11.040578, 0.000023, 0.309503]
445445
test_list.append(inc_turb_naca0012)
446446

447447
# NACA0012, SST_SUST
@@ -796,7 +796,7 @@ def main():
796796
ddes_flatplate.cfg_dir = "ddes/flatplate"
797797
ddes_flatplate.cfg_file = "ddes_flatplate.cfg"
798798
ddes_flatplate.test_iter = 10
799-
ddes_flatplate.test_vals = [-2.714785, -5.882680, -0.215041, 0.023758, -617.450000]
799+
ddes_flatplate.test_vals = [-2.714786, -5.882646, -0.215041, 0.023758, -617.470000]
800800
ddes_flatplate.unsteady = True
801801
test_list.append(ddes_flatplate)
802802

@@ -805,7 +805,7 @@ def main():
805805
unst_inc_turb_naca0015_sa.cfg_dir = "unsteady/pitching_naca0015_rans_inc"
806806
unst_inc_turb_naca0015_sa.cfg_file = "config_incomp_turb_sa.cfg"
807807
unst_inc_turb_naca0015_sa.test_iter = 1
808-
unst_inc_turb_naca0015_sa.test_vals = [-3.007635, -6.879778, 1.445293, 0.419274]
808+
unst_inc_turb_naca0015_sa.test_vals = [-3.007635, -6.879809, 1.445300, 0.419281]
809809
unst_inc_turb_naca0015_sa.unsteady = True
810810
test_list.append(unst_inc_turb_naca0015_sa)
811811

TestCases/serial_regression_AD.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def main():
7878
discadj_rans_naca0012_sa.cfg_dir = "disc_adj_rans/naca0012"
7979
discadj_rans_naca0012_sa.cfg_file = "turb_NACA0012_sa.cfg"
8080
discadj_rans_naca0012_sa.test_iter = 10
81-
discadj_rans_naca0012_sa.test_vals = [-2.996976, -0.196055, 0.000004, -0.000000, 5.000000, -3.971736, 5.000000, -10.464337]
81+
discadj_rans_naca0012_sa.test_vals = [-2.996976, -0.196055, 0.000004, -0.000000, 5.000000, -3.971736, 5.000000, -10.464319]
8282
test_list.append(discadj_rans_naca0012_sa)
8383

8484
# Adjoint turbulent NACA0012 SST
@@ -183,7 +183,7 @@ def main():
183183
discadj_heat.cfg_dir = "disc_adj_heat"
184184
discadj_heat.cfg_file = "disc_adj_heat.cfg"
185185
discadj_heat.test_iter = 10
186-
discadj_heat.test_vals = [-2.122406, 0.693852, 0.000000, -0.869010]
186+
discadj_heat.test_vals = [-2.122406, 0.693159, 0.000000, -0.869010]
187187
test_list.append(discadj_heat)
188188

189189
###################################

TestCases/tutorials.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def main():
228228
tutorial_trans_e387_sa.cfg_dir = "../Tutorials/compressible_flow/Transitional_Airfoil/Langtry_and_Menter/E387"
229229
tutorial_trans_e387_sa.cfg_file = "transitional_SA_LM_model_ConfigFile.cfg"
230230
tutorial_trans_e387_sa.test_iter = 20
231-
tutorial_trans_e387_sa.test_vals = [-6.527027, -5.081558, -0.795261, 1.022606, 0.150125, 2.000000, -9.580659]
231+
tutorial_trans_e387_sa.test_vals = [-6.527027, -5.081541, -0.795261, 1.022607, 0.150175, 2.000000, -9.580660]
232232
tutorial_trans_e387_sa.no_restart = True
233233
test_list.append(tutorial_trans_e387_sa)
234234

@@ -263,7 +263,7 @@ def main():
263263
tutorial_unst_naca0012.cfg_dir = "../Tutorials/compressible_flow/Unsteady_NACA0012"
264264
tutorial_unst_naca0012.cfg_file = "unsteady_naca0012.cfg"
265265
tutorial_unst_naca0012.test_iter = 520
266-
tutorial_unst_naca0012.test_vals = [520.000000, 0.000000, -5.291711, 0.000000, 0.305248, 0.810326, 0.001814, 0.006573]
266+
tutorial_unst_naca0012.test_vals = [520.000000, 0.000000, -5.290694, 0.000000, 0.317272, 0.820972, 0.002144, 0.012805]
267267
tutorial_unst_naca0012.test_vals_aarch64 = [520.000000, 0.000000, -5.298777, 0.000000, 0.288956, 0.736706, 0.002419, 0.007134]
268268
tutorial_unst_naca0012.unsteady = True
269269
test_list.append(tutorial_unst_naca0012)
@@ -273,7 +273,7 @@ def main():
273273
propeller_var_load.cfg_dir = "../Tutorials/compressible_flow/ActuatorDisk_VariableLoad"
274274
propeller_var_load.cfg_file = "propeller_variable_load.cfg"
275275
propeller_var_load.test_iter = 20
276-
propeller_var_load.test_vals = [-1.830276, -4.535127, -0.000323, 0.171623]
276+
propeller_var_load.test_vals = [-1.830257, -4.535041, -0.000323, 0.171647]
277277
propeller_var_load.timeout = 3200
278278
test_list.append(propeller_var_load)
279279

TestCases/vandv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def main():
4545
p30n30.cfg_dir = "vandv/rans/30p30n"
4646
p30n30.cfg_file = "config.cfg"
4747
p30n30.test_iter = 20
48-
p30n30.test_vals = [-10.582171, -10.106603, -10.474926, -10.182536, -12.679336, 0.052181, 2.829820, 1.318613, -0.221214]
49-
p30n30.test_vals_aarch64 = [-10.582171, -10.106603, -10.474926, -10.182536, -12.679336, 0.052181, 2.829820, 1.318613, -0.221214]
48+
p30n30.test_vals = [-10.582183, -10.106601, -10.474910, -10.182549, -12.679336, 0.052181, 2.829820, 1.318613, -0.221374]
49+
p30n30.test_vals_aarch64 = [-10.582183, -10.106601, -10.474910, -10.182549, -12.679336, 0.052181, 2.829820, 1.318613, -0.221374]
5050
test_list.append(p30n30)
5151

5252
# flat plate - sst-v1994m

0 commit comments

Comments
 (0)