aerosandbox.library.weights.raymer_miscellaneous ================================================ .. py:module:: aerosandbox.library.weights.raymer_miscellaneous Attributes ---------- .. autoapisummary:: aerosandbox.library.weights.raymer_miscellaneous.mass_passenger Functions --------- .. autoapisummary:: aerosandbox.library.weights.raymer_miscellaneous.mass_seat aerosandbox.library.weights.raymer_miscellaneous.mass_lavatories Module Contents --------------- .. py:data:: mass_passenger :value: 97.52235955 .. py:function:: mass_seat(kind='passenger') Computes the mass of an individual seat on an airplane. :param kind: The kind of seat. Can be "passenger", "flight_deck", or "troop". * "passenger" seats are standard commercial airline seats. * "flight_deck" seats are the seats in the cockpit. * "troop" seats are the seats in the cargo hold. Returns: The mass of a single seat, in kg. Don't forget to multiply by the number of seats to get the total mass of all seats. .. py:function:: mass_lavatories(n_pax, aircraft_type='short-haul') Computes the required mass of all lavatories on an airplane. :param n_pax: The number of passengers on the airplane. :param aircraft_type: The type of aircraft. Can be "long-haul", "short-haul", or "business-jet". * "long-haul" aircraft are long-range commercial airliners, like the Boeing 777 or Airbus A350. * "short-haul" aircraft are short-range commercial airliners, like the Boeing 737 or Airbus A320. * "business-jet" aircraft are small private jets, like the Cessna Citation X or Gulfstream G650. Returns: The mass of all lavatories on the airplane, in kg.