Changeset 453:0c948f8ef306


Ignore:
Timestamp:
03/09/13 06:17:44 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Increased the takeoff timeout in the no-strobe speed checker to 40 seconds (re #171)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/checks.py

    r452 r453  
    13541354    If, during the PUSHANDTAXI stage the speed exceeds 50 knots, the state as
    13551355    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 taxi
     1356    knots, or the plane remains on the ground for more than 40 seconds, a taxi
    13571357    speed error is logged with the highest ground speed detected. This state is
    13581358    also stored in the flight object as a possible
    13591359
    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,
    13611361    and the previously saved takeoff state is logged.
    13621362
     
    13901390                    aircraft.setStage(self._takeoffState, const.STAGE_TAKEOFF)
    13911391                    self._takeoffState = None
    1392                 elif state.timestamp > (self._takeoffState.timestamp + 30):
     1392                elif state.timestamp > (self._takeoffState.timestamp + 40):
    13931393                    flight.setRTOState(self._highestSpeedState)
    13941394        elif self._takeoffState is not None:
Note: See TracChangeset for help on using the changeset viewer.