- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/checks.py
r917 r896 1021 1021 def isCondition(self, flight, aircraft, oldState, state): 1022 1022 """Check if the fault condition holds.""" 1023 isXPlane = (flight.aircraftType==const.AIRCRAFT_DH8D or1024 flight.aircraftType==const.AIRCRAFT_B733) and \1025 (flight.fsType==const.SIM_XPLANE11 or1026 flight.fsType==const.SIM_XPLANE10 or1027 flight.fsType==const.SIM_XPLANE9)1028 1023 if flight.stage==const.STAGE_CRUISE: 1029 bankLimit = 40 if isXPlane else 30 1024 isDH8DXplane = flight.aircraftType==const.AIRCRAFT_DH8D and \ 1025 (flight.fsType==const.SIM_XPLANE10 or 1026 flight.fsType==const.SIM_XPLANE9) 1027 bankLimit = 35 if isDH8DXplane else 30 1030 1028 elif flight.stage in [const.STAGE_TAKEOFF, const.STAGE_CLIMB, 1031 1029 const.STAGE_DESCENT, const.STAGE_LANDING]: 1032 bankLimit = 45 if isXPlane else351030 bankLimit = 35 1033 1031 else: 1034 1032 return False
Note:
See TracChangeset
for help on using the changeset viewer.