Class FieldODEStateAndDerivative<T extends CalculusFieldElement<T>>

java.lang.Object
org.hipparchus.ode.FieldODEState<T>
org.hipparchus.ode.FieldODEStateAndDerivative<T>
Type Parameters:
T - the type of the field elements

public class FieldODEStateAndDerivative<T extends CalculusFieldElement<T>> extends FieldODEState<T>
Container for time, main and secondary state vectors as well as their derivatives.
See Also:
  • Constructor Details

    • FieldODEStateAndDerivative

      public FieldODEStateAndDerivative(T time, T[] primaryState, T[] primaryDerivative)
      Simple constructor.

      Calling this constructor is equivalent to call FieldODEStateAndDerivative(time, state, derivative, null, null).

      Parameters:
      time - time
      primaryState - primary state at time
      primaryDerivative - derivative of the primary state at time
    • FieldODEStateAndDerivative

      public FieldODEStateAndDerivative(T time, T[] primaryState, T[] primaryDerivative, T[][] secondaryState, T[][] secondaryDerivative)
      Simple constructor.
      Parameters:
      time - time
      primaryState - primary state at time
      primaryDerivative - derivative of the primary state at time
      secondaryState - state at time (may be null)
      secondaryDerivative - derivative of the state at time (may be null)
  • Method Details