Class FieldEventState<T extends RealFieldElement<T>>

  • Type Parameters:
    T - the type of the field elements

    public class FieldEventState<T extends RealFieldElement<T>>
    extends Object
    This class handles the state for one event handler during integration steps.

    Each time the integrator proposes a step, the event handler switching function should be checked. This class handles the state of one handler during one integration step, with references to the state at the end of the preceding step. This information is used to decide if the handler should trigger an event or not during the proposed step.

    • Constructor Detail

      • FieldEventState

        public FieldEventState​(FieldODEEventHandler<T> handler,
                               double maxCheckInterval,
                               T convergence,
                               int maxIterationCount,
                               BracketedRealFieldUnivariateSolver<T> solver)
        Simple constructor.
        Parameters:
        handler - event handler
        maxCheckInterval - maximal time interval between switching function checks (this interval prevents missing sign changes in case the integration steps becomes very large)
        convergence - convergence threshold in the event time search
        maxIterationCount - upper limit of the iteration count in the event time search
        solver - Root-finding algorithm to use to detect state events
    • Method Detail

      • getEventHandler

        public FieldODEEventHandler<T> getEventHandler()
        Get the underlying event handler.
        Returns:
        underlying event handler
      • getMaxCheckInterval

        public double getMaxCheckInterval()
        Get the maximal time interval between events handler checks.
        Returns:
        maximal time interval between events handler checks
      • getConvergence

        public T getConvergence()
        Get the convergence threshold for event localization.
        Returns:
        convergence threshold for event localization
      • getMaxIterationCount

        public int getMaxIterationCount()
        Get the upper limit in the iteration count for event localization.
        Returns:
        upper limit in the iteration count for event localization
      • tryAdvance

        public boolean tryAdvance​(FieldODEStateAndDerivative<T> state,
                                  FieldODEStateInterpolator<T> interpolator)
        Try to accept the current history up to the given time.

        It is not necessary to call this method before calling doEvent(FieldODEStateAndDerivative) with the same state. It is necessary to call this method before you call doEvent(FieldODEStateAndDerivative) on some other event detector.

        Parameters:
        state - to try to accept.
        interpolator - to use to find the new root, if any.
        Returns:
        if the event detector has an event it has not detected before that is on or before the same time as state. In other words false means continue on while true means stop and handle my event first.
      • getEventTime

        public T getEventTime()
        Get the occurrence time of the event triggered in the current step.
        Returns:
        occurrence time of the event triggered in the current step or infinity if no events are triggered