Changeset 644:bd36997f0b8a
- Timestamp:
- 06/21/15 08:38:58 (9 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/mlx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/acft.py
r635 r644 117 117 self.initialClimbSpeedAltitude = 1500 118 118 self.reverseMinSpeed = 50 119 120 self.hasStrobeLight = True 119 121 120 122 self.maxTakeOffPitch = 15.0 … … 984 986 self.reverseMinSpeed = 50 985 987 988 self.hasStrobeLight = False 989 986 990 self.maxTakeOffPitch = 16.0 987 991 self.maxTouchDownPitch = 16.0 … … 1037 1041 self.reverseMinSpeed = 50 1038 1042 1043 self.hasStrobeLight = False 1044 1039 1045 self.maxTakeOffPitch = 16.0 1040 1046 self.maxTouchDownPitch = 16.0 … … 1087 1093 self.flapSpeedLimits = { 20 : 165, 1088 1094 35 : 135 } 1095 1096 self.hasStrobeLight = False 1089 1097 1090 1098 @property -
src/mlx/checks.py
r643 r644 1526 1526 if flight.stage==const.STAGE_PUSHANDTAXI or \ 1527 1527 flight.stage==const.STAGE_RTO: 1528 self._checkPushAndTaxi(flight, aircraft, state) 1528 if state.groundSpeed>50 and aircraft.hasStrobeLight and \ 1529 state.strobeLightsOn is False: 1530 self.logSpeedFault(flight, state) 1531 else: 1532 self._checkPushAndTaxi(flight, aircraft, state) 1529 1533 elif flight.stage==const.STAGE_TAXIAFTERLAND: 1530 1534 if state.groundSpeed>50:
Note:
See TracChangeset
for help on using the changeset viewer.