Ignore:
Timestamp:
03/14/22 08:46:34 (2 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
Phase:
public
Message:

Updates for the new crew and passenger handling (re #357)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/const.py

    r1032 r1033  
    570570
    571571#-------------------------------------------------------------------------------
     572
     573# The weight of a cabin crew member [kg]
     574WEIGHT_CABIN_CREW = 75
     575
     576# The weight of an adult passenger [kg]
     577WEIGHT_PASSENGER = 84
     578
     579# The weight of an adult passenger on charter flight [kg]
     580WEIGHT_PASSENGER_CHARTER = 76
     581
     582# The weight of a child passenger [kg]
     583WEIGHT_CHILD = 35
     584
     585# The weight of an infant passenger [kg]
     586WEIGHT_INFANT = 0
     587
     588#-------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.