diff options
| author | blendoit <blendoit@gmail.com> | 2019-10-20 19:33:53 -0700 |
|---|---|---|
| committer | blendoit <blendoit@gmail.com> | 2019-10-20 19:33:53 -0700 |
| commit | 5e82dedea4c56eafc1bba4f3ec8677b15f51c03f (patch) | |
| tree | d754b30ae1f7a892cd22ce092b5c1a8f5ebca847 /evaluator/mass.py | |
| parent | 87f2d5da23a0bb7159d64827390b5083b80f1375 (diff) | |
Commence declassification of Evaluator
Pointless to have a separate object for the Evaluator when a collection
of evaluator.py methods does the trick.
Diffstat (limited to 'evaluator/mass.py')
| -rw-r--r-- | evaluator/mass.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/evaluator/mass.py b/evaluator/mass.py new file mode 100644 index 0000000..514c59b --- /dev/null +++ b/evaluator/mass.py @@ -0,0 +1,8 @@ +def get_mass_distribution(self, total_mass): + F_z = [total_mass / self.semi_span for x in range(0, self.semi_span)] + return F_z + + +def get_mass_total(self, aircraft): + """Get the total aircraft mass.""" + return 2000 |