*ARCHIVED* development moved to aircraft-studio.
more accurate evaluator report generation
evaluator.py
@@ -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):