Skip to content

Commit

Permalink
Merge pull request OpenMDAO#227 from errordynamicist/main
Browse files Browse the repository at this point in the history
Changed the lower bound of the initial guess for the GTOW to facilita…
  • Loading branch information
crecine authored Apr 3, 2024
2 parents f79d73a + 4e9bc5e commit eeedc01
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 eeedc01

Please sign in to comment.