Class EventFilter
- java.lang.Object
-
- org.hipparchus.ode.events.EventFilter
-
- All Implemented Interfaces:
ODEEventHandler
public class EventFilter extends Object implements ODEEventHandler
Wrapper used to detect only increasing or decreasing events.General
eventsare defined implicitly by ag functioncrossing zero. This function needs to be continuous in the event neighborhood, and its sign must remain consistent between events. This implies that during an ODE integration, events triggered are alternately events for which the function increases from negative to positive values, and events for which the function decreases from positive to negative values.Sometimes, users are only interested in one type of event (say increasing events for example) and not in the other type. In these cases, looking precisely for all events location and triggering events that will later be ignored is a waste of computing time.
Users can wrap a regular
event handlerin an instance of this class and provide this wrapping instance to theODE solverin order to avoid wasting time looking for uninteresting events. The wrapper will intercept the calls to theg functionand to theeventOccurredmethod in order to ignore uninteresting events. The wrapped regularevent handlerwill the see only the interesting events, i.e. either onlyincreasingevents ordecreasingevents. the number of calls to theg functionwill also be reduced.
-
-
Constructor Summary
Constructors Constructor Description EventFilter(ODEEventHandler rawHandler, FilterType filter)Wrap anevent handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActioneventOccurred(ODEStateAndDerivative state, boolean increasing)Handle an event and choose what to do next.doubleg(ODEStateAndDerivative state)Compute the value of the switching function.voidinit(ODEStateAndDerivative initialState, double finalTime)Initialize event handler at the start of an ODE integration.ODEStateresetState(ODEStateAndDerivative state)Reset the state prior to continue the integration.
-
-
-
Constructor Detail
-
EventFilter
public EventFilter(ODEEventHandler rawHandler, FilterType filter)
Wrap anevent handler.- Parameters:
rawHandler- event handler to wrapfilter- filter to use
-
-
Method Detail
-
init
public void init(ODEStateAndDerivative initialState, double finalTime)
Initialize event handler at the start of an ODE integration.This method is called once at the start of the integration. It may be used by the event handler to initialize some internal data if needed.
The default implementation does nothing
- Specified by:
initin interfaceODEEventHandler- Parameters:
initialState- initial time, state vector and derivativefinalTime- target time for the integration
-
g
public double g(ODEStateAndDerivative state)
Compute the value of the switching function.The discrete events are generated when the sign of this switching function changes. The integrator will take care to change the stepsize in such a way these events occur exactly at step boundaries. The switching function must be continuous in its roots neighborhood (but not necessarily smooth), as the integrator will need to find its roots to locate precisely the events.
Also note that for the integrator to detect an event the sign of the switching function must have opposite signs just before and after the event. If this consistency is not preserved the integrator may not detect any events.
This need for consistency is sometimes tricky to achieve. A typical example is using an event to model a ball bouncing on the floor. The first idea to represent this would be to have
g(state) = h(state)where h is the height above the floor at timestate.getTime(). Wheng(state)reaches 0, the ball is on the floor, so it should bounce and the typical way to do this is to reverse its vertical velocity. However, this would mean that before the eventg(state)was decreasing from positive values to 0, and after the eventg(state)would be increasing from 0 to positive values again. Consistency is broken here! The solution here is to haveg(state) = sign * h(state), where sign is a variable with initial value set to+1. Each timeeventOccurredis called,signis reset to-sign. This allows theg(state)function to remain continuous (and even smooth) even across events, despiteh(state)is not. Basically, the event is used to foldh(state)at bounce points, andsignis used to unfold it back, so the solvers sees ag(state)function which behaves smoothly even across events.Calling this multiple times with the same state will result in the same value. The definition of the g function may change when an
event occurs, as in the above example.- Specified by:
gin interfaceODEEventHandler- Parameters:
state- current value of the independent time variable, state vector and derivative- Returns:
- value of the g switching function
- See Also:
org.hipparchus.ode.events
-
eventOccurred
public Action eventOccurred(ODEStateAndDerivative state, boolean increasing)
Handle an event and choose what to do next.This method is called when the integrator has accepted a step ending exactly on a sign change of the function, just before the step handler itself is called (see below for scheduling). It allows the user to update his internal data to acknowledge the fact the event has been handled (for example setting a flag in the
differential equationsto switch the derivatives computation in case of discontinuity), or to direct the integrator to either stop or continue integration, possibly with a reset state or derivatives.- if
Action.STOPis returned, the step handler will be called with theisLastflag of thehandleStepmethod set to true and the integration will be stopped, - if
Action.RESET_STATEis returned, theresetStatemethod will be called once the step handler has finished its task, and the integrator will also recompute the derivatives, - if
Action.RESET_DERIVATIVESis returned, the integrator will recompute the derivatives, - if
Action.CONTINUEis returned, no specific action will be taken (apart from having called this method) and integration will continue.
The scheduling between this method and the
ODEStepHandlermethodhandleStep(interpolator, isLast)is to call this method first andhandleStepafterwards. This scheduling allows the integrator to passtrueas theisLastparameter to the step handler to make it aware the step will be the last one if this method returnsAction.STOP. As the interpolator may be used to navigate back throughout the last step (asStepNormalizerdoes for example), user code called by this method and user code called by step handlers may experience apparently out of order values of the independent time variable. As an example, if the same user object implements both thisEventHandlerinterface and theODEFixedStepHandlerinterface, a forward integration may call itseventOccurredmethod with t = 10 first and call itshandleStepmethod with t = 9 afterwards. Such out of order calls are limited to the size of the integration step forvariable step handlersand to the size of the fixed step forfixed step handlers.- Specified by:
eventOccurredin interfaceODEEventHandler- Parameters:
state- current value of the independent time variable, state vector and derivativeincreasing- if true, the value of the switching function increases when times increases around event (note that increase is measured with respect to physical time, not with respect to integration which may go backward in time)- Returns:
- indication of what the integrator should do next, this
value must be one of
Action.STOP,Action.RESET_STATE,Action.RESET_DERIVATIVESorAction.CONTINUE
- if
-
resetState
public ODEState resetState(ODEStateAndDerivative state)
Reset the state prior to continue the integration.This method is called after the step handler has returned and before the next step is started, but only when
ODEEventHandler.eventOccurred(org.hipparchus.ode.ODEStateAndDerivative, boolean)has itself returned theAction.RESET_STATEindicator. It allows the user to reset the state vector for the next step, without perturbing the step handler of the finishing step.The default implementation returns its argument.
- Specified by:
resetStatein interfaceODEEventHandler- Parameters:
state- current value of the independent time variable, state vector and derivative- Returns:
- reset state (note that it does not include the derivatives, they will be added automatically by the integrator afterwards)
-
-