Package faa.tg.aircraft.integrator

Interface Summary
Integrator<T extends StateVector<T>> Integrator is a handle interface to use in conjunction with a set of StateVector and StateGenerators to use numerical integration to update a set of equations in time.
StateFilter<T extends StateVector<T>> For use with Integrator, a StateFilter extracts the relevant information out of a StateVector to determining the error based on a integration step.
StateGenerator<T extends StateVector<T>> An Interface for numerically integratable objects which use an Integrator for integration.
StateVector<T extends StateVector<T>> A self-consistent implementation of an n-dimensional vector.
 

Class Summary
CashKarpIntegrator<T extends StateVector<T>> A Cash-Karp is a type of Runge-Kutta integrator with an adaptive time-step.
EulerIntegrator<E extends StateVector<E>> Euler integration is fixed time-step first order integration.
FixedStepIntegrator<E extends StateVector<E>> Base class for all fixed time step Integrators.
SecondOrderRungeKutta<E extends StateVector<E>> A fixed time-step integrator that uses the second order Talyor-Macluran series expansion as an approximation of a function.