Skip to content

Commit

Permalink
Added doc for TakeoffSequence
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-david committed Apr 24, 2023
1 parent 02f59df commit cc133c8
Showing 1 changed file with 41 additions and 2 deletions.
43 changes: 41 additions & 2 deletions docs/documentation/mission_module/mission_file/segments.rst
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,7 @@ Such segment will be implemented in the future.*
=======================

A :code:`holding` segment simulates a flight part at constant speed and altitude, and regulated
thrust rate (drag is compensated). It ends when
the target time is covered.
thrust rate (drag is compensated). It ends when the target time is covered.

**Example:**

Expand Down Expand Up @@ -504,6 +503,46 @@ good accuracy on takeoff distance.

Python documentation: :class:`~fastoad.models.performances.mission.segments.registered.takeoff.end_of_takeoff.EndOfTakeoffSegment`

.. _segment-takeoff:

:code:`takeoff` segment
=======================

.. versionadded:: 1.5.0

This segment is the sequence of `ground_speed_change segment`_, `rotation segment`_ and `end_of_takeoff segment`_.

The parameters for this segment are the same as for its 3 components, except that:

- :code:`time_step` is used only for `ground_speed_change segment`_ and `rotation segment`_.
- time step for `end_of_takeoff segment`_ is driven by the additional parameter :code:`end_time_step`
- target speed at end of `ground_speed_change segment`_ is driven by the additional parameter :code:`rotation_equivalent_airspeed`
- the target of :code:`takeoff` segment is the target of `end_of_takeoff segment`_, meaning it sets the safety altitude.

**Example:**

.. code-block:: yaml
segment: takeoff
wheels_friction: 0.03
rotation_equivalent_airspeed:
value: data:mission:operational:takeoff:Vr
rotation_rate:
value: 0.0523
units: rad
rotation_alpha_limit_truc:
value: 0.3489
units: rad
end_time_step: 0.05
target:
delta_altitude:
value: 35
unit: ft
.. seealso::

Python documentation: :class:`~fastoad.models.performances.mission.segments.registered.takeoff.takeoff.TakeOffSequence`

.. _segment-target:

**************
Expand Down

0 comments on commit cc133c8

Please sign in to comment.