Skip to content

Commit 82ac791

Browse files
committed
update tests
1 parent 397c228 commit 82ac791

File tree

6 files changed

+66
-66
lines changed

6 files changed

+66
-66
lines changed

TestCases/hybrid_regression.py

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -103,32 +103,32 @@ def main():
103103
flatplate.cfg_dir = "navierstokes/flatplate"
104104
flatplate.cfg_file = "lam_flatplate.cfg"
105105
flatplate.test_iter = 100
106-
flatplate.test_vals = [-7.679131, -2.206953, 0.001084, 0.036233, 2.361500, -2.325300, -1.984700, -1.984700]
106+
flatplate.test_vals = [-7.679131, -2.206953, 0.001084, 0.036233, 2.361500, -2.325300, 0, 0]
107107
test_list.append(flatplate)
108108

109109
# Laminar cylinder (steady)
110110
cylinder = TestCase('cylinder')
111111
cylinder.cfg_dir = "navierstokes/cylinder"
112112
cylinder.cfg_file = "lam_cylinder.cfg"
113113
cylinder.test_iter = 25
114-
cylinder.test_vals = [-8.266513, -2.783904, -0.019899, 1.615668, -0.010207]
114+
cylinder.test_vals = [-8.266513, -2.783904, -0.019899, 1.615668, 0]
115115
test_list.append(cylinder)
116116

117117
# Laminar cylinder (low Mach correction)
118118
cylinder_lowmach = TestCase('cylinder_lowmach')
119119
cylinder_lowmach.cfg_dir = "navierstokes/cylinder"
120120
cylinder_lowmach.cfg_file = "cylinder_lowmach.cfg"
121121
cylinder_lowmach.test_iter = 25
122-
cylinder_lowmach.test_vals = [-6.830996, -1.368850, -0.143956, 73.963354, 0.002457]
123-
cylinder_lowmach.test_vals_aarch64 = [-6.830996, -1.368850, -0.143956, 73.963354, 0.002457]
122+
cylinder_lowmach.test_vals = [-6.830996, -1.368850, -0.143956, 73.963354, 0]
123+
cylinder_lowmach.test_vals_aarch64 = [-6.830996, -1.368850, -0.143956, 73.963354, 0]
124124
test_list.append(cylinder_lowmach)
125125

126126
# 2D Poiseuille flow (body force driven with periodic inlet / outlet)
127127
poiseuille = TestCase('poiseuille')
128128
poiseuille.cfg_dir = "navierstokes/poiseuille"
129129
poiseuille.cfg_file = "lam_poiseuille.cfg"
130130
poiseuille.test_iter = 10
131-
poiseuille.test_vals = [-5.046131, 0.652984, 0.008355, 13.735818, -2.142500]
131+
poiseuille.test_vals = [-5.046131, 0.652984, 0.008355, 13.735818, 0]
132132
test_list.append(poiseuille)
133133

134134
# 2D Poiseuille flow (inlet profile file)
@@ -157,15 +157,15 @@ 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.269324, 0.807147, 0.060499, 0]
161161
test_list.append(rae2822_sa)
162162

163163
# RAE2822 SST
164164
rae2822_sst = TestCase('rae2822_sst')
165165
rae2822_sst.cfg_dir = "rans/rae2822"
166166
rae2822_sst.cfg_file = "turb_SST_RAE2822.cfg"
167167
rae2822_sst.test_iter = 20
168-
rae2822_sst.test_vals = [-0.510363, 4.872736, 0.815617, 0.060920, -73391.000000]
168+
rae2822_sst.test_vals = [-0.510363, 4.872736, 0.815617, 0.060920, 0]
169169
test_list.append(rae2822_sst)
170170

171171
# RAE2822 SST_SUST
@@ -189,24 +189,24 @@ def main():
189189
turb_oneram6.cfg_dir = "rans/oneram6"
190190
turb_oneram6.cfg_file = "turb_ONERAM6.cfg"
191191
turb_oneram6.test_iter = 10
192-
turb_oneram6.test_vals = [-2.408523, -6.662833, 0.238333, 0.158910, -52718]
192+
turb_oneram6.test_vals = [-2.408523, -6.662833, 0.238333, 0.158910, 0]
193193
test_list.append(turb_oneram6)
194194

195195
# NACA0012 (SA, FUN3D finest grid results: CL=1.0983, CD=0.01242)
196196
turb_naca0012_sa = TestCase('turb_naca0012_sa')
197197
turb_naca0012_sa.cfg_dir = "rans/naca0012"
198198
turb_naca0012_sa.cfg_file = "turb_NACA0012_sa.cfg"
199199
turb_naca0012_sa.test_iter = 5
200-
turb_naca0012_sa.test_vals = [-12.098325, -14.149988, 1.057665, 0.022971, 20.000000, -2.292707, 0.000000, -12.068169, -44.871000]
201-
turb_naca0012_sa.test_vals_aarch64 = [-12.098325, -14.149988, 1.057665, 0.022971, 20.000000, -2.292707, 0.000000, -12.068169, -44.871000]
200+
turb_naca0012_sa.test_vals = [-12.098325, -14.149988, 1.057665, 0.022971, 20.000000, -2.292707, 0.000000, -12.068169, 0]
201+
turb_naca0012_sa.test_vals_aarch64 = [-12.098325, -14.149988, 1.057665, 0.022971, 20.000000, -2.292707, 0.000000, -12.068169, 0]
202202
test_list.append(turb_naca0012_sa)
203203

204204
# NACA0012 (SST, FUN3D finest grid results: CL=1.0840, CD=0.01253)
205205
turb_naca0012_sst = TestCase('turb_naca0012_sst')
206206
turb_naca0012_sst.cfg_dir = "rans/naca0012"
207207
turb_naca0012_sst.cfg_file = "turb_NACA0012_sst.cfg"
208208
turb_naca0012_sst.test_iter = 10
209-
turb_naca0012_sst.test_vals = [-12.105781, -15.277738, -6.210248, 1.049757, 0.019249, -2.807857, -38.976000]
209+
turb_naca0012_sst.test_vals = [-12.105781, -15.277738, -6.210248, 1.049757, 0.019249, -2.807857, 0]
210210
test_list.append(turb_naca0012_sst)
211211

212212
# NACA0012 (SST_SUST, FUN3D finest grid results: CL=1.0840, CD=0.01253)
@@ -250,7 +250,7 @@ def main():
250250
axi_rans_air_nozzle_restart.cfg_dir = "axisymmetric_rans/air_nozzle"
251251
axi_rans_air_nozzle_restart.cfg_file = "air_nozzle_restart.cfg"
252252
axi_rans_air_nozzle_restart.test_iter = 10
253-
axi_rans_air_nozzle_restart.test_vals = [-12.070954, -7.407644, -8.698118, -4.008751, -3572.100000]
253+
axi_rans_air_nozzle_restart.test_vals = [-12.070954, -7.407644, -8.698118, -4.008751, 0]
254254
test_list.append(axi_rans_air_nozzle_restart)
255255

256256
#################################
@@ -381,8 +381,8 @@ def main():
381381
inc_poly_cylinder.cfg_dir = "incomp_navierstokes/cylinder"
382382
inc_poly_cylinder.cfg_file = "poly_cylinder.cfg"
383383
inc_poly_cylinder.test_iter = 20
384-
inc_poly_cylinder.test_vals = [-7.851512, -2.093420, 0.029974, 1.921595, -175.300000]
385-
inc_poly_cylinder.test_vals_aarch64 = [-7.851510, -2.093419, 0.029974, 1.921595, -175.300000]
384+
inc_poly_cylinder.test_vals = [-7.827942, -2.061513, 0.029525, 1.953498, -174.780000]
385+
inc_poly_cylinder.test_vals_aarch64 = [-7.827942, -2.061513, 0.029525, 1.953498, -174.780000]
386386
test_list.append(inc_poly_cylinder)
387387

388388
# X-coarse laminar bend as a mixed element CGNS test
@@ -452,8 +452,8 @@ def main():
452452
square_cylinder.cfg_dir = "unsteady/square_cylinder"
453453
square_cylinder.cfg_file = "turb_square.cfg"
454454
square_cylinder.test_iter = 3
455-
square_cylinder.test_vals = [-2.560839, -1.173497, 0.061188, 1.399403, 2.220575, 1.399351, 2.218781, -0.584690]
456-
square_cylinder.test_vals_aarch64 = [-2.557902, -1.173574, 0.058050, 1.399794, 2.220402, 1.399748, 2.218604, -0.453270]
455+
square_cylinder.test_vals = [-2.560839, -1.173497, 0.061188, 1.399403, 2.220575, 1.399351, 2.218781, 0]
456+
square_cylinder.test_vals_aarch64 = [-2.557902, -1.173574, 0.058050, 1.399794, 2.220402, 1.399748, 2.218604, 0]
457457
square_cylinder.unsteady = True
458458
test_list.append(square_cylinder)
459459

@@ -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.714785, -5.882681, -0.215041, 0.023758, 0]
507507
ddes_flatplate.unsteady = True
508508
test_list.append(ddes_flatplate)
509509

TestCases/hybrid_regression_AD.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ def main():
110110
discadj_incomp_cylinder.cfg_dir = "disc_adj_incomp_navierstokes/cylinder"
111111
discadj_incomp_cylinder.cfg_file = "heated_cylinder.cfg"
112112
discadj_incomp_cylinder.test_iter = 20
113-
discadj_incomp_cylinder.test_vals = [20.000000, -2.705921, -2.837904, 0.000000]
114-
discadj_incomp_cylinder.test_vals_aarch64 = [20.000000, -2.705918, -2.837766, 0.000000]
113+
discadj_incomp_cylinder.test_vals = [20.000000, -2.746353, -2.934792, 0.000000]
114+
discadj_incomp_cylinder.test_vals_aarch64 = [20.000000, -2.746353, -2.934792, 0.000000]
115115
test_list.append(discadj_incomp_cylinder)
116116

117117
######################################

TestCases/parallel_regression.py

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def main():
303303
flatplate.cfg_dir = "navierstokes/flatplate"
304304
flatplate.cfg_file = "lam_flatplate.cfg"
305305
flatplate.test_iter = 100
306-
flatplate.test_vals = [-7.613122, -2.140941, 0.001084, 0.036230, 2.361500, -2.325300, -1.975600, -1.975600]
306+
flatplate.test_vals = [-7.613122, -2.140941, 0.001084, 0.036230, 2.361500, -2.325300, 0.000000, 0.000000]
307307
test_list.append(flatplate)
308308

309309
# Custom objective function
@@ -319,23 +319,23 @@ def main():
319319
cylinder.cfg_dir = "navierstokes/cylinder"
320320
cylinder.cfg_file = "lam_cylinder.cfg"
321321
cylinder.test_iter = 25
322-
cylinder.test_vals = [-8.422091, -2.930561, -0.003396, 1.608418, -0.009920]
322+
cylinder.test_vals = [-8.422091, -2.930561, -0.003396, 1.608418, 0.000000]
323323
test_list.append(cylinder)
324324

325325
# Laminar cylinder (low Mach correction)
326326
cylinder_lowmach = TestCase('cylinder_lowmach')
327327
cylinder_lowmach.cfg_dir = "navierstokes/cylinder"
328328
cylinder_lowmach.cfg_file = "cylinder_lowmach.cfg"
329329
cylinder_lowmach.test_iter = 25
330-
cylinder_lowmach.test_vals = [-6.841604, -1.379532, -1.266739, 76.118218, 0.000274]
330+
cylinder_lowmach.test_vals = [-6.841604, -1.379532, -1.266739, 76.118218, 0.000000]
331331
test_list.append(cylinder_lowmach)
332332

333333
# 2D Poiseuille flow (body force driven with periodic inlet / outlet)
334334
poiseuille = TestCase('poiseuille')
335335
poiseuille.cfg_dir = "navierstokes/poiseuille"
336336
poiseuille.cfg_file = "lam_poiseuille.cfg"
337337
poiseuille.test_iter = 10
338-
poiseuille.test_vals = [-5.050889, 0.648196, 0.000199, 13.639173, -2.114500]
338+
poiseuille.test_vals = [-5.050889, 0.648196, 0.000199, 13.639173, 0.000000]
339339
poiseuille.tol = 0.001
340340
test_list.append(poiseuille)
341341

@@ -357,15 +357,15 @@ 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.265782, 0.809463, 0.062016, 0.000000]
361361
test_list.append(rae2822_sa)
362362

363363
# RAE2822 SST
364364
rae2822_sst = TestCase('rae2822_sst')
365365
rae2822_sst.cfg_dir = "rans/rae2822"
366366
rae2822_sst.cfg_file = "turb_SST_RAE2822.cfg"
367367
rae2822_sst.test_iter = 20
368-
rae2822_sst.test_vals = [-0.510369, 4.870643, 0.816647, 0.061833, -71779.000000]
368+
rae2822_sst.test_vals = [-0.510369, 4.870643, 0.816647, 0.061833, 0.000000]
369369
test_list.append(rae2822_sst)
370370

371371
# RAE2822 SST_SUST
@@ -413,7 +413,7 @@ def main():
413413
turb_oneram6.cfg_dir = "rans/oneram6"
414414
turb_oneram6.cfg_file = "turb_ONERAM6.cfg"
415415
turb_oneram6.test_iter = 10
416-
turb_oneram6.test_vals = [-2.408532, -6.662836, 0.238334, 0.158910, -52718]
416+
turb_oneram6.test_vals = [-2.408532, -6.662836, 0.238334, 0.158910, 0]
417417
turb_oneram6.timeout = 3200
418418
test_list.append(turb_oneram6)
419419

@@ -422,7 +422,7 @@ def main():
422422
turb_oneram6_vc.cfg_dir = "rans/oneram6"
423423
turb_oneram6_vc.cfg_file = "turb_ONERAM6_vc.cfg"
424424
turb_oneram6_vc.test_iter = 15
425-
turb_oneram6_vc.test_vals = [-2.281896, -6.614616, 0.233785, 0.142861, -47942]
425+
turb_oneram6_vc.test_vals = [-2.281896, -6.614616, 0.233785, 0.142861, 0]
426426
turb_oneram6_vc.timeout = 3200
427427
test_list.append(turb_oneram6_vc)
428428

@@ -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.094721, -14.685268, 1.057665, 0.022971, 20.000000, -1.692925, 20.000000, -4.037672, 0]
445445
turb_naca0012_sa.timeout = 3200
446446
test_list.append(turb_naca0012_sa)
447447

@@ -450,8 +450,8 @@ def main():
450450
turb_naca0012_sst.cfg_dir = "rans/naca0012"
451451
turb_naca0012_sst.cfg_file = "turb_NACA0012_sst.cfg"
452452
turb_naca0012_sst.test_iter = 10
453-
turb_naca0012_sst.test_vals = [-12.107692, -15.277743, -6.210238, 1.049757, 0.019249, -2.357984, -38.976000]
454-
turb_naca0012_sst.test_vals_aarch64 = [-12.107692, -15.277743, -6.210238, 1.049757, 0.019249, -2.357984, -38.976000]
453+
turb_naca0012_sst.test_vals = [-12.107692, -15.277743, -6.210238, 1.049757, 0.019249, -2.357984, 0]
454+
turb_naca0012_sst.test_vals_aarch64 = [-12.107692, -15.277743, -6.210238, 1.049757, 0.019249, -2.357984, 0]
455455
turb_naca0012_sst.timeout = 3200
456456
test_list.append(turb_naca0012_sst)
457457

@@ -530,7 +530,7 @@ def main():
530530
axi_rans_air_nozzle_restart.cfg_dir = "axisymmetric_rans/air_nozzle"
531531
axi_rans_air_nozzle_restart.cfg_file = "air_nozzle_restart.cfg"
532532
axi_rans_air_nozzle_restart.test_iter = 10
533-
axi_rans_air_nozzle_restart.test_vals = [-12.071395, -7.467871, -8.649076, -3.995810, -3572.100000]
533+
axi_rans_air_nozzle_restart.test_vals = [-12.071395, -7.467871, -8.649076, -3.995810, 0]
534534
axi_rans_air_nozzle_restart.tol = 0.0001
535535
test_list.append(axi_rans_air_nozzle_restart)
536536

@@ -602,7 +602,7 @@ def main():
602602
inc_poly_cylinder.cfg_dir = "incomp_navierstokes/cylinder"
603603
inc_poly_cylinder.cfg_file = "poly_cylinder.cfg"
604604
inc_poly_cylinder.test_iter = 20
605-
inc_poly_cylinder.test_vals = [-7.791831, -2.062292, 0.013040, 1.913997, -171.120000]
605+
inc_poly_cylinder.test_vals = [-7.786564, -2.036735, 0.012980, 1.944887, -170.930000]
606606
test_list.append(inc_poly_cylinder)
607607

608608
# X-coarse laminar bend as a mixed element CGNS test
@@ -732,8 +732,8 @@ def main():
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]
736-
turbmod_sa_neg_rae2822.test_vals_aarch64 = [-1.359612, 1.493629, 1.218367, -1.441703, 1.248499, 0.457987, -86467.000000]
735+
turbmod_sa_neg_rae2822.test_vals = [-1.466238, 3.169232, 2.756518, 4.722767, 1.120253, 0.378675, 0]
736+
turbmod_sa_neg_rae2822.test_vals_aarch64 = [-1.359612, 1.493629, 1.218367, -1.441703, 1.248499, 0.457987, 0]
737737
test_list.append(turbmod_sa_neg_rae2822)
738738

739739
# SA Compressibility Correction
@@ -974,7 +974,7 @@ def main():
974974
square_cylinder.cfg_dir = "unsteady/square_cylinder"
975975
square_cylinder.cfg_file = "turb_square.cfg"
976976
square_cylinder.test_iter = 3
977-
square_cylinder.test_vals = [-1.173495, 0.061186, 1.399404, 2.220578, 1.399352, 2.218783, -0.584750]
977+
square_cylinder.test_vals = [-1.173495, 0.061186, 1.399404, 2.220578, 1.399352, 2.218783, 0]
978978
square_cylinder.unsteady = True
979979
test_list.append(square_cylinder)
980980

@@ -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.714785, -5.882679, -0.215041, 0.023758, 0]
10051005
ddes_flatplate.unsteady = True
10061006
test_list.append(ddes_flatplate)
10071007

@@ -1282,7 +1282,7 @@ def main():
12821282
p1rad.cfg_dir = "radiation/p1model"
12831283
p1rad.cfg_file = "configp1.cfg"
12841284
p1rad.test_iter = 100
1285-
p1rad.test_vals = [-7.743666, -7.921411, -2.111848, 0.098302, -45.023000]
1285+
p1rad.test_vals = [-7.743666, -7.921411, -2.111848, 0.098302, -47.897000]
12861286
test_list.append(p1rad)
12871287

12881288

@@ -1359,8 +1359,8 @@ def main():
13591359
pywrapper_turb_naca0012_sst.cfg_dir = "rans/naca0012"
13601360
pywrapper_turb_naca0012_sst.cfg_file = "turb_NACA0012_sst.cfg"
13611361
pywrapper_turb_naca0012_sst.test_iter = 10
1362-
pywrapper_turb_naca0012_sst.test_vals = [-12.107692, -15.277743, -6.210238, 1.049757, 0.019249, -2.357984, -38.976000]
1363-
pywrapper_turb_naca0012_sst.test_vals_aarch64 = [-12.107692, -15.277743, -6.210238, 1.049757, 0.019249, -2.357984, -38.976000]
1362+
pywrapper_turb_naca0012_sst.test_vals = [-12.107692, -15.277743, -6.210238, 1.049757, 0.019249, -2.357984, 0]
1363+
pywrapper_turb_naca0012_sst.test_vals_aarch64 = [-12.107692, -15.277743, -6.210238, 1.049757, 0.019249, -2.357984, 0]
13641364
pywrapper_turb_naca0012_sst.command = TestCase.Command("mpirun -np 2", "SU2_CFD.py", "--parallel -f")
13651365
pywrapper_turb_naca0012_sst.timeout = 3200
13661366
test_list.append(pywrapper_turb_naca0012_sst)
@@ -1370,7 +1370,7 @@ def main():
13701370
pywrapper_square_cylinder.cfg_dir = "unsteady/square_cylinder"
13711371
pywrapper_square_cylinder.cfg_file = "turb_square.cfg"
13721372
pywrapper_square_cylinder.test_iter = 10
1373-
pywrapper_square_cylinder.test_vals = [-1.176405, -0.354027, 1.407859, 2.360784, 1.404715, 2.302615, -0.394750]
1373+
pywrapper_square_cylinder.test_vals = [-1.176405, -0.354027, 1.407859, 2.360784, 1.404715, 2.302615, 0]
13741374
pywrapper_square_cylinder.command = TestCase.Command("mpirun -np 2", "SU2_CFD.py", "--parallel -f")
13751375
pywrapper_square_cylinder.unsteady = True
13761376
test_list.append(pywrapper_square_cylinder)
@@ -1422,7 +1422,7 @@ def main():
14221422
pywrapper_unsteadyCHT.cfg_dir = "py_wrapper/flatPlate_unsteady_CHT"
14231423
pywrapper_unsteadyCHT.cfg_file = "unsteady_CHT_FlatPlate_Conf.cfg"
14241424
pywrapper_unsteadyCHT.test_iter = 5
1425-
pywrapper_unsteadyCHT.test_vals = [-1.614167, 2.240663, -0.001316, 0.177491]
1425+
pywrapper_unsteadyCHT.test_vals = [-1.614167, 2.240663, -0.001392, 0.177499]
14261426
pywrapper_unsteadyCHT.command = TestCase.Command("mpirun -np 2", "python", "launch_unsteady_CHT_FlatPlate.py --parallel -f")
14271427
pywrapper_unsteadyCHT.unsteady = True
14281428
test_list.append(pywrapper_unsteadyCHT)

TestCases/parallel_regression_AD.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def main():
116116
discadj_incomp_cylinder.cfg_dir = "disc_adj_incomp_navierstokes/cylinder"
117117
discadj_incomp_cylinder.cfg_file = "heated_cylinder.cfg"
118118
discadj_incomp_cylinder.test_iter = 20
119-
discadj_incomp_cylinder.test_vals = [20.000000, -2.195581, -2.162081, 0.000000]
119+
discadj_incomp_cylinder.test_vals = [20.000000, -2.082673, -2.013587, 0.000000]
120120
test_list.append(discadj_incomp_cylinder)
121121

122122
######################################
@@ -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 = [-1.840132, 0.751835, 0.000000, 0.006760]
260260
discadj_heat.test_vals_aarch64 = [-2.226539, 0.605868, 0.000000, -6.256400]
261261
test_list.append(discadj_heat)
262262

0 commit comments

Comments
 (0)