Changeset 597:79a1c9f14bc5 for src/mlx
- Timestamp:
- 02/22/15 09:29:41 (10 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/acft.py
r592 r597 374 374 if self._minLandingFuel is not None and \ 375 375 aircraftState.totalFuel<self._minLandingFuel: 376 self._flight.handleNoGo(self.__class__, 377 aircraftState.timestamp, 378 "The amount of the landing fuel is less than the minimum for this type: %ukgs" % 379 (self._minLandingFuel,), 380 "LANDING FUEL NO GO") 376 self._flight.handleFault(self.__class__, 377 aircraftState.timestamp, 378 "The amount of the landing fuel is less than the minimum for this type: %ukgs (possible NO GO!)" % 379 (self._minLandingFuel,), 0) 381 380 self.logger.message(aircraftState.timestamp, 382 381 "Landing weight: %.0f kg, MLW: %.0f" % \
Note:
See TracChangeset
for help on using the changeset viewer.