Skip to content

Commit

Permalink
Changed the lower bound of the initial guess for the GTOW to facilita…
Browse files Browse the repository at this point in the history
…te modeling turboprops under 100k lbf GTOW
  • Loading branch information
errordynamicist committed Apr 3, 2024
1 parent f79d73a commit 4e9bc5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aviary/interface/methods_for_level2.py
Original file line number Diff line number Diff line change
Expand Up @@ -1650,7 +1650,7 @@ def add_design_variables(self):
optimize_mass = self.pre_mission_info.get('optimize_mass')
if optimize_mass:
self.model.add_design_var(Mission.Design.GROSS_MASS, units='lbm',
lower=100.e3, upper=200.e3, ref=135.e3)
lower=100.e2, upper=200.e3, ref=135.e3)

elif self.mission_method is TWO_DEGREES_OF_FREEDOM:
if self.analysis_scheme is AnalysisScheme.COLLOCATION:
Expand Down

0 comments on commit 4e9bc5e

Please sign in to comment.