Skip to content

Commit

Permalink
explicitly add wing interior to v-h tails
Browse files Browse the repository at this point in the history
  • Loading branch information
mjburton committed Oct 16, 2017
1 parent fe5d186 commit 238e02f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gpkitmodels/GP/aircraft/tail/horizontal_tail.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
from gpkit import Variable
from .tail_aero import TailAero
from gpkitmodels.GP.aircraft.wing.wing import Wing
from gpkitmodels.GP.aircraft.wing.wing_interior import WingInterior

#pylint: disable=attribute-defined-outside-init, unused-variable

class HorizontalTail(Wing):
"horizontal tail model"
flight_model = TailAero
fillModel = WingInterior
sparModel = None

def setup(self, N=3, lam=0.8):
Expand Down
2 changes: 2 additions & 0 deletions gpkitmodels/GP/aircraft/tail/vertical_tail.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
from gpkit import Variable
from .tail_aero import TailAero
from gpkitmodels.GP.aircraft.wing.wing import Wing
from gpkitmodels.GP.aircraft.wing.wing_interior import WingInterior

#pylint: disable=attribute-defined-outside-init, unused-variable

class VerticalTail(Wing):
"vertical tail model"
flight_model = TailAero
fillModel = WingInterior
sparModel = None
def setup(self, N=3, lam=0.8):

Expand Down

0 comments on commit 238e02f

Please sign in to comment.