Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions TestCases/hybrid_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,14 +210,6 @@ def main():
propeller.test_vals = [-3.389576, -8.409529, 0.000048, 0.056329]
test_list.append(propeller)

# PROPELLER VARIBLE LOAD
propeller_var_load = TestCase('propeller_variable_load')
propeller_var_load.cfg_dir = "rans/actuatordisk_variable_load"
propeller_var_load.cfg_file = "propeller_variable_load.cfg"
propeller_var_load.test_iter = 20
propeller_var_load.test_vals = [-1.808010, -4.535613, 0.000190, 0.172483]
test_list.append(propeller_var_load)

#################################
## Compressible RANS Restart ###
#################################
Expand Down
11 changes: 0 additions & 11 deletions TestCases/parallel_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,17 +334,6 @@ def main():
propeller.tol = 0.00001
test_list.append(propeller)

# PROPELLER VARIBLE LOAD
propeller_var_load = TestCase('propeller_variable_load')
propeller_var_load.cfg_dir = "rans/actuatordisk_variable_load"
propeller_var_load.cfg_file = "propeller_variable_load.cfg"
propeller_var_load.test_iter = 20
propeller_var_load.test_vals = [-1.837780, -4.535082, -0.000315, 0.171887]
propeller_var_load.su2_exec = "parallel_computation.py -f"
propeller_var_load.timeout = 3200
propeller_var_load.tol = 0.00001
test_list.append(propeller_var_load)

#################################
## Compressible RANS Restart ###
#################################
Expand Down
12 changes: 0 additions & 12 deletions TestCases/serial_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,18 +375,6 @@ def main():
propeller.tol = 0.00001
test_list.append(propeller)

# PROPELLER VARIBLE LOAD
propeller_var_load = TestCase('propeller_variable_load')
propeller_var_load.cfg_dir = "rans/actuatordisk_variable_load"
propeller_var_load.cfg_file = "propeller_variable_load.cfg"
propeller_var_load.test_iter = 20
propeller_var_load.test_vals = [-1.824944, -4.535272, -0.000008, 0.172071] #last 4 columns
propeller_var_load.su2_exec = "SU2_CFD"
propeller_var_load.new_output = True
propeller_var_load.timeout = 3200
propeller_var_load.tol = 0.00001
test_list.append(propeller_var_load)

#################################
## Compressible RANS Restart ###
#################################
Expand Down
11 changes: 11 additions & 0 deletions TestCases/tutorials.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,17 @@ def main():
tutorial_unst_naca0012.tol = 0.00001
tutorial_unst_naca0012.unsteady = True
test_list.append(tutorial_unst_naca0012)

# PROPELLER VARIBLE LOAD
propeller_var_load = TestCase('propeller_variable_load')
propeller_var_load.cfg_dir = "../Tutorials/compressible_flow/ActuatorDisk_VariableLoad"
propeller_var_load.cfg_file = "propeller_variable_load.cfg"
propeller_var_load.test_iter = 20
propeller_var_load.test_vals = [-1.837780, -4.535082, -0.000315, 0.171887]
propeller_var_load.su2_exec = "mpirun -np 2 SU2_CFD"
propeller_var_load.timeout = 3200
propeller_var_load.tol = 0.00001
test_list.append(propeller_var_load)

### Design

Expand Down