Changeset 453:0c948f8ef306
- Timestamp:
- 03/09/13 06:17:44 (12 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/checks.py
r452 r453 1354 1354 If, during the PUSHANDTAXI stage the speed exceeds 50 knots, the state as 1355 1355 saved as a provisional takeoff state. If the speed then decreases below 50 1356 knots, or the plane remains on the ground for more than 20 seconds, a taxi1356 knots, or the plane remains on the ground for more than 40 seconds, a taxi 1357 1357 speed error is logged with the highest ground speed detected. This state is 1358 1358 also stored in the flight object as a possible 1359 1359 1360 If the plane becomes airborne within 20 seconds, the stage becomes TAKEOFF,1360 If the plane becomes airborne within 40 seconds, the stage becomes TAKEOFF, 1361 1361 and the previously saved takeoff state is logged. 1362 1362 … … 1390 1390 aircraft.setStage(self._takeoffState, const.STAGE_TAKEOFF) 1391 1391 self._takeoffState = None 1392 elif state.timestamp > (self._takeoffState.timestamp + 30):1392 elif state.timestamp > (self._takeoffState.timestamp + 40): 1393 1393 flight.setRTOState(self._highestSpeedState) 1394 1394 elif self._takeoffState is not None:
Note:
See TracChangeset
for help on using the changeset viewer.