Skip to content

Commit

Permalink
regression test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
josy-nal committed Nov 7, 2023
1 parent c4e264c commit b85ed33
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions TestCases/parallel_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,12 +487,12 @@ def main():
test_list.append(propeller)

# Actuator disk BEM method for propeller
propeller = TestCase('actuatordisk_bem')
propeller.cfg_dir = "rans/actuatordisk_bem"
propeller.cfg_file = "actuatordisk_bem.cfg"
propeller.test_iter = 15
propeller.test_vals = [3.3764e-01, -5.226958, -8.297197, 0, -0.004325, -0.565388]
propeller.timeout = 3200
actuatordisk_bem = TestCase('actuatordisk_bem')
actuatordisk_bem.cfg_dir = "rans/actuatordisk_bem"
actuatordisk_bem.cfg_file = "actuatordisk_bem.cfg"
actuatordisk_bem.test_iter = 15
actuatordisk_bem.test_vals = [ -5.226958, -8.297197, -0.004325, -0.565388]
actuatordisk_bem.timeout = 3200
test_list.append(actuatordisk_bem)

#######################################
Expand Down
3 changes: 2 additions & 1 deletion TestCases/rans/actuatordisk_bem/actuatordisk_bem.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,6 @@ RESTART_FILENAME= restart_flow_actuatordisk_bem.dat
VOLUME_FILENAME= flow_actuatordisk_bem
SURFACE_FILENAME= surface_flow_actuatordisk_bem
OUTPUT_WRT_FREQ= 500
SCREEN_OUTPUT= (INNER_ITER, WALL_TIME, RMS_DENSITY, RMS_NU_TILDE, NONPHYSICAL_POINTS, LIFT, DRAG)
%SCREEN_OUTPUT= (INNER_ITER, WALL_TIME, RMS_DENSITY, RMS_NU_TILDE, NONPHYSICAL_POINTS, LIFT, DRAG)
SCREEN_OUTPUT= (INNER_ITER, RMS_DENSITY, RMS_NU_TILDE, LIFT, DRAG)
HISTORY_OUTPUT= (INNER_ITER, RMS_RES, LIFT, DRAG, AERO_COEFF)

0 comments on commit b85ed33

Please sign in to comment.