Class FieldODEStateAndDerivative<T extends CalculusFieldElement<T>>

    • Constructor Detail

      • 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)