Ignore:
Timestamp:
07/10/16 05:54:17 (8 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Added support for the Boeing 737-200 aircraft type (weight data is still missing, re #302)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/acft.py

    r709 r790  
    789789#---------------------------------------------------------------------------------------
    790790
     791class B732(Boeing737CL):
     792    """Boeing 737-200 aircraft."""
     793    def __init__(self, flight):
     794        super(B732, self).__init__(flight)
     795        self.dow = 32700
     796        self.mtow = 62820
     797        self.mlw = 51700
     798        self.mzfw = 48410
     799        self.maxTakeOffPitch = 13.4
     800        self.maxTouchDownPitch = 12.0
     801
     802#---------------------------------------------------------------------------------------
     803
    791804class B733(Boeing737CL):
    792805    """Boeing 737-300 aircraft."""
     
    12011214             const.AIRCRAFT_B738  : B738,
    12021215             const.AIRCRAFT_B738C : B738Charter,
     1216             const.AIRCRAFT_B732  : B732,
    12031217             const.AIRCRAFT_B733  : B733,
    12041218             const.AIRCRAFT_B734  : B734,
Note: See TracChangeset for help on using the changeset viewer.