T - the type of the field elementspublic interface FieldOrdinaryDifferentialEquation<T extends RealFieldElement<T>>
This interface should be implemented by all real first order
 differential equation problems before they can be handled by the
 integrators FieldODEIntegrator.integrate(FieldExpandableODE,
 FieldODEState, RealFieldElement) method.
A first order differential equations problem, as seen by an
 integrator is the time derivative dY/dt of a state
 vector Y, both being one dimensional arrays. From the
 integrator point of view, this derivative depends only on the
 current time t and on the state vector
 Y.
For real problems, the derivative depends also on parameters that do not belong to the state vector (dynamical model constants for example). These constants are completely outside of the scope of this interface, the classes that implement it are allowed to handle them as they want.
FieldODEIntegrator| Modifier and Type | Method and Description | 
|---|---|
| T[] | computeDerivatives(T t,
                  T[] y)Get the current time derivative of the state vector. | 
| int | getDimension()Get the dimension of the problem. | 
| default void | init(T t0,
    T[] y0,
    T finalTime)Initialize equations at the start of an ODE integration. | 
int getDimension()
default void init(T t0, T[] y0, T finalTime)
This method is called once at the start of the integration. It may be used by the equations to initialize some internal data if needed.
The default implementation does nothing.
t0 - value of the independent time variable at integration starty0 - array containing the value of the state vector at integration startfinalTime - target time for the integrationCopyright © 2016–2020 Hipparchus.org. All rights reserved.