Skip to content

Commit

Permalink
update tip values to allow for feasible solution with cvxopt
Browse files Browse the repository at this point in the history
  • Loading branch information
mjburton committed Apr 20, 2018
1 parent 08b419f commit 07c738b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gpkitmodels/GP/aircraft/wing/wing_test.py
Expand Up @@ -40,7 +40,7 @@ def wing_test():
if settings["default_solver"] == "cvxopt":
for l in loading:
for v in ["Mtip", "Stip", "wroot", "throot"]:
l.substitutions[v] = 1e-3
l.substitutions[v] = 1e-1

m = Model(perf.Cd, [
loading[1].v == fs.V,
Expand Down Expand Up @@ -68,7 +68,7 @@ def box_spar():
if settings["default_solver"] == "cvxopt":
for l in loading:
for v in ["Mtip", "Stip", "wroot", "throot"]:
l.substitutions[v] = 1e-3
l.substitutions[v] = 1e-2

m = Model(perf.Cd, [
loading[1].v == fs.V,
Expand Down

0 comments on commit 07c738b

Please sign in to comment.