Ignore:
Timestamp:
07/21/12 10:50:57 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Added some further documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/checks.py

    r273 r297  
    1 # The various checks that may be performed during flight
     1## @package mlx.checks
     2#
     3# The classes that check the state of the aircraft.
     4#
     5# During the flight the program periodically queries various data from the
     6# simulator. This data is returned in instances of the \ref
     7# mlx.fs.AircraftState class and passed to the various "checkers",
     8# i.e. instances of subclasses of the \ref StateChecker class. These checkers
     9# perform various checks to see if the aircraft's parameters are within the
     10# expected limits, or some of them just logs something.
     11#
     12# There are a few special ones, such as \ref StageChecker which computes the
     13# transitions from one stage of the flight to the next one. Or \ref ACARSSender
     14# which sends the ACARS periodically
    215
    316#---------------------------------------------------------------------------------------
     
    94107    It sends the ACARS every 3 minutes to the MAVA website."""
    95108
    96     # The interval at which ACARS is sent
     109    ## The interval at which the ACARS are sent
    97110    INTERVAL = 3*60.0
    98111   
Note: See TracChangeset for help on using the changeset viewer.