Package faa.tg.aircraft.adm.guidance.latguidance

This package provides the lateral components of the simulators adm model of the Aircraft's guidance system.

See:
          Description

Class Summary
FixCaptureManeuver Guides an aircraft to the desired fix and captures it.
FollowRouteUntilAltManeuver FollowRouteUntilAltManeuver is a maneuver that guides aircraft along the specified heading until the aircraft is above the specified altitude.
FollowTrackManeuver FollowTrackManeuver handles maneuvers where another aircraft is tracked to determine this aircraft's desired location.
GroundTrackManeuver Guides the aircraft along the desired ground track.
GuidanceManeuver Interface implemented by every lateral guidance strategist.
HeadingManeuver Guides the aircraft along the specified heading, taking into account the flight technical error.
HeadingToRouteSubmaneuver Steers aircraft along fixed heading until aircraft intercepts the route.
HeadingTrackManeuver HeadingTrackManeuver provides a trackable implementation of HeadingManeuver.
HeadingUntilAboveAltManeuver HeadingUntilAboveAltManeuver is a maneuver that guides aircraft along the specified heading until the aircraft is above the specified altitude.
HoldingInSubmaneuver Guides the aircraft along the specified route, taking into account the flight technical error.
HoldingOutSubmaneuver Guides the aircraft along the desired ground track.
HoldingPatternManeuver Guides an aircraft to the desired fix and flies a holding pattern See the source HoldingPatternManeuver.java
LateralGuidance A Facade responsible for bringing guidance maneuvers together and allowing them to work together to guide an aircraft to a route (or Fix) for capture.
LateralGuidanceResult This class is a typical results class which is used for returning the values calculated by the lateral guidance classes -- the desired heading and turn direction.
MergeToRouteSubmaneuver Implements functionality to automatically capture the route by determining the best segment for capture, then capturing and following the route.
RouteFollowingManeuver Guides the aircraft along the specified route, taking into account the flight technical error.
SegmentCaptureSubmaneuver SegmentCaptureSubmaneuver is a submaneuver for aircraft transitioning from one route segment to the next.
 

Package faa.tg.aircraft.adm.guidance.latguidance Description

This package provides the lateral components of the simulators adm model of the Aircraft's guidance system. The guidance system is used to determine where the aircraft wants to be on the lateral plane. Specifically it determines the desired heading and turn direction of the aircraft. The guidance system has methods (as defined by this interface) to recieve command input from the aircraft, and needs the aircrafts position as estimated by the navigation system as well as information about the aircraft. It is ultimately responsible for generating a lateral guidance result -- an object containing these desired values.