Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimization of turboprop model #217

Merged
merged 13 commits into from
Apr 2, 2024
4 changes: 2 additions & 2 deletions integration_tests/oad_process/test_oad_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ def test_oad_process_tbm_900(cleanup):
_check_weight_performance_loop(problem)

# noinspection PyTypeChecker
assert_allclose(problem.get_val("data:mission:sizing:fuel", units="kg"), 765.0, atol=1)
assert_allclose(problem.get_val("data:mission:sizing:fuel", units="kg"), 768.0, atol=1)
assert_allclose(problem["data:handling_qualities:stick_fixed_static_margin"], 0.23, atol=1e-2)
# noinspection PyTypeChecker
assert_allclose(problem.get_val("data:weight:aircraft:MTOW", units="kg"), 3359.0, atol=1)
assert_allclose(problem.get_val("data:weight:aircraft:MTOW", units="kg"), 3362.0, atol=1)
# noinspection PyTypeChecker
assert_allclose(problem.get_val("data:weight:aircraft:OWE", units="kg"), 2114.0, atol=1)

Expand Down