more accurate evaluator report generation

Commit
33ebb493182a9cec909821ac88d178d61d3ec74e
Author
Marius Peter <blendoit@gmail.com>
Author date
Committer
Marius Peter <blendoit@gmail.com>
Committer date
evaluator.py
index 046d4dd0..04746e73 100644..100644
@@ -77,11 +77,15 @@
77 77 print('I_z:\n', np.around(self.I_[1], 3))
78 78 print('I_xz:\n', np.around(self.I_[2], 3))
79 79 print(num_of_dashes * '-')
80 Removed: print('Rectangular lift:\n', np.around(self.lift_rectangular, round))
81 Removed: print('Elliptical lift:\n', np.around(self.lift_elliptical, round))
82 Removed: print('Combined lift:\n', np.around(self.lift_total, round))
83 Removed: print('Distribution of mass:\n', np.around(self.mass_dist, round))
84 Removed: print('Drag:\n', np.around(self.drag, round))
80 Added: print('Rectangular lift along semi-span:\n',
81 Added: np.around(self.lift_rectangular, round))
82 Added: print('Elliptical lift along semi-span:\n',
83 Added: np.around(self.lift_elliptical, round))
84 Added: print('Combined lift along semi-span:\n',
85 Added: np.around(self.lift_total, round))
86 Added: print('Distribution of mass along semi-span:\n',
87 Added: np.around(self.mass_dist, round))
88 Added: print('Drag along semi-span:\n', np.around(self.drag, round))
85 89 return None
86 90
87 91 def info_save(self, save_path, number):