Ignore:
Timestamp:
03/16/18 08:52:05 (6 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

The Ilyushin Il-62 is supported to some degree.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/acft.py

    r888 r895  
    12371237#---------------------------------------------------------------------------------------
    12381238
     1239class IL62(Aircraft):
     1240    """Ilyushin IL-62 aircraft.
     1241
     1242    The aircraft type-specific values in the aircraft state have the following
     1243    structure:
     1244    - fuel: left, centre, right
     1245    - n1: left outer, left inner, right inner, right outer
     1246    - reverser: empty (the plane has no reversers)"""
     1247    dow = 69500
     1248
     1249    def __init__(self, flight):
     1250        super(B462, self).__init__(flight)
     1251        self.mtow = 165000
     1252        self.mlw = 165000
     1253        self.mzfw = 165000
     1254        self.gearSpeedLimit = 210
     1255        self.flapSpeedLimits = { 18 : 217,
     1256                                 24 : 180,
     1257                                 30 : 170,
     1258                                 33 : 150 }
     1259
     1260    @property
     1261    def derateType(self):
     1262        """Get the derate type for this type."""
     1263        return DERATE_NONE
     1264
     1265#---------------------------------------------------------------------------------------
     1266
    12391267mostFuelTanks = [const.FUELTANK_LEFT_TIP, const.FUELTANK_EXTERNAL1,
    12401268                 const.FUELTANK_LEFT_AUX,
     
    12621290             const.AIRCRAFT_T154  : T154,
    12631291             const.AIRCRAFT_YK40  : YK40,
    1264              const.AIRCRAFT_B462  : B462 }
     1292             const.AIRCRAFT_B462  : B462,
     1293             const.AIRCRAFT_IL62  : IL62 }
    12651294
    12661295#---------------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.