diff options
author | Marius Peter <blendoit@gmail.com> | 2019-06-23 16:05:47 -0700 |
---|---|---|
committer | Marius Peter <blendoit@gmail.com> | 2019-06-23 16:05:47 -0700 |
commit | 33ebb493182a9cec909821ac88d178d61d3ec74e (patch) | |
tree | 157dcac3625b146a874549e4ca2a17180f56fefd | |
parent | 0d4f7a9cf92c14d31d50eebfd2a6307f8d48e24c (diff) |
more accurate evaluator report generation
-rw-r--r-- | evaluator.py | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/evaluator.py b/evaluator.py index 046d4dd..04746e7 100644 --- a/evaluator.py +++ b/evaluator.py @@ -77,11 +77,15 @@ class Evaluator: print('I_z:\n', np.around(self.I_[1], 3)) print('I_xz:\n', np.around(self.I_[2], 3)) print(num_of_dashes * '-') - print('Rectangular lift:\n', np.around(self.lift_rectangular, round)) - print('Elliptical lift:\n', np.around(self.lift_elliptical, round)) - print('Combined lift:\n', np.around(self.lift_total, round)) - print('Distribution of mass:\n', np.around(self.mass_dist, round)) - print('Drag:\n', np.around(self.drag, round)) + print('Rectangular lift along semi-span:\n', + np.around(self.lift_rectangular, round)) + print('Elliptical lift along semi-span:\n', + np.around(self.lift_elliptical, round)) + print('Combined lift along semi-span:\n', + np.around(self.lift_total, round)) + print('Distribution of mass along semi-span:\n', + np.around(self.mass_dist, round)) + print('Drag along semi-span:\n', np.around(self.drag, round)) return None def info_save(self, save_path, number): |