Skip to content
Snippets Groups Projects

Updated range boundaries

Merged gPauls-TUHH requested to merge fix/MA_range_boundary into develop
1 unresolved thread
1 file
+ 4
2
Compare changes
  • Side-by-side
  • Inline
@@ -190,8 +190,10 @@ StandardMission::StandardMission(const std::shared_ptr<RuntimeIO>& rtIO) :
step_height_cruise(0.),
cruise_profile_start(0),
cruise_profile_end(0),
top_of_climb_range("top_of_climb_range", "Flown range from takeoff to top of climb (= start of initial cruise altitude (ICA))", 0, "m", 0, 500000),
top_of_descent_range("top_of_descent_range", "Flown range from takeoff to top of descent", 0, "m", 0, 5000000),
top_of_climb_range("top_of_climb_range", "Flown range from takeoff to top of climb (= start of initial cruise altitude (ICA))", 0, "m", 0,
EndnodeReadOnly<double>("requirements_and_specifications/requirements/top_level_aircraft_requirements/design_mission/range").read(rtIO->acxml).value()),
top_of_descent_range("top_of_descent_range", "Flown range from takeoff to top of descent", 0, "m", 0,
EndnodeReadOnly<double>("requirements_and_specifications/requirements/top_level_aircraft_requirements/design_mission/range").read(rtIO->acxml).value()),
descent_range(0.),
descent_range_next_FL(0.),
top_of_descent_altitude(0.),
Loading