def test_170(self): cl = PlateEmpirical(1).calculate_lift_coefficient(Angle(100)) self.assertAlmostEqual(0.17488299, cl)
def test_neg_170(self): cl = PlateEmpirical(1).calculate_lift_coefficient(Angle(-170)) self.assertAlmostEqual(-0.75854699, cl)
def test_10(self): cl = PlateEmpirical(1).calculate_lift_coefficient(Angle(10)) self.assertAlmostEqual(0.758546992, cl)