fastoad.models.performances.mission.segments.registered.speed_change module
Classes for acceleration/deceleration segments.
- class fastoad.models.performances.mission.segments.registered.speed_change.SpeedChangeSegment(name: str = '', target: ~fastoad.model_base.flight_point.FlightPoint = <object object>, isa_offset: float = 0.0, propulsion: ~fastoad.model_base.propulsion.IPropulsion = <object object>, polar: ~fastoad.models.performances.mission.polar.Polar = <object object>, polar_modifier: ~fastoad.models.performances.mission.polar_modifier.AbstractPolarModifier = <factory>, reference_area: float = <object object>, time_step: float = 0.2, maximum_CL: float = None, altitude_bounds: tuple = (-500.0, 40000.0), mach_bounds: tuple = (-1e-06, 5.0), interrupt_if_getting_further_from_target: bool = True, engine_setting: ~fastoad.constants.EngineSetting = EngineSetting.CLIMB, load_factor: float = 1.0, thrust_rate: float = 1.0)[source]
Bases:
AbstractManualThrustSegment
,AbstractLiftFromWeightSegment
Computes a flight path segment where speed is modified with no change in altitude.
The target must define a speed value among true_airspeed, equivalent_airspeed and mach.
- get_distance_to_target(flight_points: List[FlightPoint], target: FlightPoint) float [source]
Computes a “distance” from last flight point to target.
Computed does not need to have a real meaning. The important point is that it must be signed so that algorithm knows on which “side” of the target we are. And of course, it should be 0. if flight point is on target.
- Parameters:
flight_points – list of all currently computed flight_points
target – segment target (will not contain relative values)
- Returns:
if target is attained, a non-null value otherwise
- get_gamma_and_acceleration(flight_point: FlightPoint) Tuple[float, float] [source]
Computes slope angle (gamma) and acceleration.
- Parameters:
flight_point – parameters after propulsion model has been called (i.e. mass, thrust and drag are available)
- Returns:
slope angle in radians and acceleration in m**2/s
- property target: FlightPoint
The base class of the class hierarchy.
When called, it accepts no arguments and returns a new featureless instance that has no instance attributes and cannot be given any.
- polar_modifier: AbstractPolarModifier