Skip to content

Commit

Permalink
deleted commented lines
Browse files Browse the repository at this point in the history
  • Loading branch information
courtin committed Apr 18, 2018
1 parent bd45d71 commit 56a6c34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
10 changes: 4 additions & 6 deletions gpkitmodels/GP/aircraft/motor/motor_test.py
Expand Up @@ -34,16 +34,15 @@ def setup(self):
def actuator_propulsor_test():

test = Actuator_Propulsor_Test()
sol = test.solve()
#print sol.table()
test.solve()




def propulsor_test():

test = Propulsor_Test()
sol = test.solve()
#print sol.table()
test.solve()

class Motor_P_Test(Model):
def setup(self):
Expand Down Expand Up @@ -84,8 +83,7 @@ def setup(self):

def motor_test():
test = Motor_P_Test()
sol = test.solve()
#print sol.table()
test.solve()

def test():
motor_test()
Expand Down
4 changes: 2 additions & 2 deletions gpkitmodels/GP/aircraft/prop/prop_test.py
Expand Up @@ -14,8 +14,8 @@ def simpleprop_test():
m = Model(1/pp.eta + p.W/(100.*units("lbf"))+ pp.Q/(100.*units("N*m")),
[fs, p, pp])
m.substitutions.update({"rho": 1.225, "V": 50, "T": 100, "omega":1000})
sol = m.solve()
#print sol.table()
m.solve()



def test():
Expand Down

0 comments on commit 56a6c34

Please sign in to comment.