Ignore:
Timestamp:
04/10/12 18:07:36 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Added the takeoff page.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/acft.py

    r52 r71  
    136136                                    (aircraftState.windDirection,
    137137                                     aircraftState.windSpeed))
     138                self.logger.message(aircraftState.timestamp,
     139                                    "Speeds calculated by the pilot: V1: %s, VR: %s, V2: %s" % \
     140                                    ("-" if self._flight.v1 is None
     141                                     else str(self._flight.v1),
     142                                     "-" if self._flight.vr is None
     143                                     else str(self._flight.vr),
     144                                     "-" if self._flight.v2 is None
     145                                     else str(self._flight.v2)))
    138146            elif newStage==const.STAGE_TAXIAFTERLAND:
    139147                self.logger.message(aircraftState.timestamp, "Flight time end")
Note: See TracChangeset for help on using the changeset viewer.