Changeset 799:959b8a49cde5 for src
- Timestamp:
- 07/26/16 17:28:14 (8 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/acft.py
r798 r799 930 930 ["78/290/250"]) 931 931 932 def setBookedFlight(self, bookedFlight): 933 """Update the aircraft based on the booked flight data (e.g. tail number).""" 934 if bookedFlight.tailNumber=="HA-LHD": 935 self.mtow = 159210 936 self.mlw = 126098 937 932 938 #--------------------------------------------------------------------------------------- 933 939 … … 1117 1123 """Get the derate type for this type.""" 1118 1124 return DERATE_TUPOLEV 1125 1126 def setBookedFlight(self, bookedFlight): 1127 """Update the aircraft based on the booked flight data (e.g. tail number).""" 1128 if bookedFlight.tailNumber in ["HA-LCM", "HA-LCN", "HA-LCO", "HA-LCP", 1129 "HA-LCR", "HA-LCU", "HA-LCV"]: 1130 self.mtow = 100000 1131 self.mlw = 80000 1119 1132 1120 1133 def _appendLightsLoggers(self):
Note:
See TracChangeset
for help on using the changeset viewer.