summaryrefslogtreecommitdiff
path: root/evaluator.py
diff options
context:
space:
mode:
authorMarius Peter <blendoit@gmail.com>2019-06-20 21:05:57 -0700
committerMarius Peter <blendoit@gmail.com>2019-06-20 21:05:57 -0700
commit7fdc7e586e1c2125eef533af77dcb5ee8930b702 (patch)
treec63a5e447042bbc87603b6c3582b6b9776357e00 /evaluator.py
parent86a92de95e6894a2b6e23889214e943fdf211cdf (diff)
consistent 'get' inputs and outputs in evaluator
Diffstat (limited to 'evaluator.py')
-rw-r--r--evaluator.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/evaluator.py b/evaluator.py
index a734c78..2b61348 100644
--- a/evaluator.py
+++ b/evaluator.py
@@ -15,8 +15,6 @@
from math import sin, cos, atan, sqrt
-# All of these functions take integer arguments and return lists.
-
def get_total_mass(*component):
total_mass = float()
@@ -25,18 +23,23 @@ def get_total_mass(*component):
return total_mass
-def get_lift_rectangular(lift, semi_span):
- L_prime = lift / (semi_span * 2)
+# All these functions take integer arguments and return lists.
+
+def get_lift_rectangular(airfoil, lift):
+ L_prime = [lift / (airfoil.semi_span * 2)
+ for x in range(airfoil.semi_span)]
return L_prime
-def get_lift_elliptical(L_0, y, semi_span):
- L_prime = L_0 * sqrt(1 - (y / semi_span) ** 2)
+def get_lift_elliptical(airfoil, L_0):
+ L_prime = [L_0 * sqrt(1 - (y / airfoil.semi_span) ** 2)
+ for y in range(airfoil.semi_span)]
return L_prime
def get_lift(rectangular, elliptical):
- F_z = (rectangular + elliptical) / 2
+ F_z = [(rectangular[_] + elliptical[_]) / 2
+ for _ in range(len(rectangular))]
return F_z
Copyright 2019--2024 Marius PETER