Changeset 447:3c4f141b2d42
- Timestamp:
- 03/02/13 09:21:07 (12 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/mlx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/acft.py
r445 r447 152 152 self._checkers.append(checks.VSChecker()) 153 153 154 timeout = 5.0 + config.realIASSmoothingLength - 1154 timeout = 30.0 + config.realIASSmoothingLength - 1 155 155 self._checkers.append(checks.OverspeedChecker(timeout = timeout)) 156 156 -
src/mlx/checks.py
r446 r447 1237 1237 class OverspeedChecker(PatientFaultChecker): 1238 1238 """Check if Vne has been exceeded.""" 1239 def __init__(self, timeout = 5.0):1239 def __init__(self, timeout = 30.0): 1240 1240 """Construct the checker.""" 1241 1241 super(OverspeedChecker, self).__init__(timeout = timeout)
Note:
See TracChangeset
for help on using the changeset viewer.