Skip to content

Commit 70affe0

Browse files
committed
fix vortex test screen output
1 parent 9fb1c3d commit 70affe0

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

TestCases/mms/fvm_euler/inv_mms_vortex.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@ GRAD_OBJFUNC_FILENAME= of_grad.dat
8686
SURFACE_FILENAME= surface_flow
8787
SURFACE_ADJ_FILENAME= surface_adjoint
8888
OUTPUT_WRT_FREQ= 50
89-
SCREEN_OUTPUT= (INNER_ITER, RMS_DENSITY, RMS_ENERGY, LIFT, DRAG)
89+
SCREEN_OUTPUT= (TIME_ITER, RMS_DENSITY, RMS_ENERGY, LIFT, DRAG)

TestCases/parallel_regression.py

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -294,18 +294,6 @@ def main():
294294
ramp.test_vals_aarch64 = [-13.398422, -7.786461, -0.081064, 0.056474]
295295
test_list.append(ramp)
296296

297-
###################################
298-
### Compressible Euler Periodic ###
299-
###################################
300-
301-
# Isentropic vortex
302-
isentropic_vortex = TestCase('isentropic_vortex')
303-
isentropic_vortex.cfg_dir = "mms/fvm_euler"
304-
isentropic_vortex.cfg_file = "inv_mms_vortex.cfg"
305-
isentropic_vortex.test_iter = 10
306-
isentropic_vortex.test_vals = [-5.692776, -4.843872, 0.000000, 0.000000]
307-
test_list.append(isentropic_vortex)
308-
309297
##########################
310298
### Compressible N-S ###
311299
##########################
@@ -1491,6 +1479,14 @@ def main():
14911479
### Method of Manufactured Solutions (MMS) ###
14921480
##############################################
14931481

1482+
# FVM, compressible, euler (periodic isentropic vortex)
1483+
mms_fvm_vortex = TestCase('mms_fvm_vortex')
1484+
mms_fvm_vortex.cfg_dir = "mms/fvm_euler"
1485+
mms_fvm_vortex.cfg_file = "inv_mms_vortex.cfg"
1486+
mms_fvm_vortex.test_iter = 10
1487+
mms_fvm_vortex.test_vals = [-5.692776, -4.843872, 0.000000, 0.000000]
1488+
test_list.append(mms_fvm_vortex)
1489+
14941490
# FVM, compressible, laminar N-S
14951491
mms_fvm_ns = TestCase('mms_fvm_ns')
14961492
mms_fvm_ns.cfg_dir = "mms/fvm_navierstokes"

0 commit comments

Comments
 (0)