From 5ab73817371c1b4fedbd98838d3cf28984d73004 Mon Sep 17 00:00:00 2001 From: blendoit Date: Mon, 21 Oct 2019 21:25:52 -0700 Subject: Correct implem. of evaluator.analyze_all & Evaluator declassification --- evaluator/lift.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'evaluator/lift.py') diff --git a/evaluator/lift.py b/evaluator/lift.py index 6b4363e..516d649 100644 --- a/evaluator/lift.py +++ b/evaluator/lift.py @@ -19,7 +19,7 @@ def _get_lift_elliptical(aircraft, L_0=3.2): return L_prime -def get_lift_total(self, aircraft): +def get_lift_total(aircraft): """Combination of rectangular and elliptical lift.""" # F_z = self._get_lift_rectangular(aircraft) + self._get_lift_elliptical( # aircraft) @@ -27,4 +27,4 @@ def get_lift_total(self, aircraft): # aircraft) + self._get_lift_elliptical(aircraft) / 2 # F_z = [i + j for i, j in self._get_lift_rectangular] # return F_z - return 420 + return 400 -- cgit v1.2.3