Skip to content

Commit

Permalink
Do not generate reports when computing OAS surrogate training data (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
eytanadler authored Dec 10, 2023
1 parent 6c90acb commit 4fc037d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openconcept/aerodynamics/openaerostruct/aerostructural.py
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ def compute_aerodynamic_data(point):
compute_W_wing = point[4]

# Set up OpenAeroStruct problem
p = om.Problem()
p = om.Problem(reports=False)
p.model.add_subsystem(
"aero_analysis",
Aerostruct(
Expand Down
2 changes: 1 addition & 1 deletion openconcept/aerodynamics/openaerostruct/drag_polar.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ def compute_aerodynamic_data(point):
inputs = point[3]

# Set up OpenAeroStruct problem
p = om.Problem()
p = om.Problem(reports=False)
p.model.add_subsystem(
"aero_analysis",
VLM(
Expand Down

0 comments on commit 4fc037d

Please sign in to comment.