Interface | Description |
---|---|
EventHandlerConfiguration |
Interface gathering all configuration parameters for setting up an event handler.
|
FieldEventHandlerConfiguration<T extends CalculusFieldElement<T>> |
Interface gathering all configuration parameters for setting up an event handler.
|
FieldODEEventHandler<T extends CalculusFieldElement<T>> |
This interface represents a handler for discrete events triggered
during ODE integration.
|
ODEEventHandler |
This interface represents a handler for discrete events triggered
during ODE integration.
|
Class | Description |
---|---|
EventFilter |
Wrapper used to detect only increasing or decreasing events.
|
EventState |
This class handles the state for one
event handler during integration steps. |
EventState.EventOccurrence |
Class to hold the data related to an event occurrence that is needed to decide how
to modify integration.
|
FieldEventFilter<T extends CalculusFieldElement<T>> |
Wrapper used to detect only increasing or decreasing events.
|
FieldEventState<T extends CalculusFieldElement<T>> |
This class handles the state for one
event handler during integration steps. |
FieldEventState.EventOccurrence<T extends CalculusFieldElement<T>> |
Class to hold the data related to an event occurrence that is needed to decide how
to modify integration.
|
Enum | Description |
---|---|
Action |
Enumerate for actions to be performed when an event occurs during ODE integration.
|
FilterType |
Enumerate for
filtering events . |
This package provides classes to handle discrete events occurring during Ordinary Differential Equations integration.
Discrete events detection is based on switching functions. The user provides
a simple g(state)
function depending on the current time and state. The integrator will monitor
the value of the function throughout integration range and will trigger the
event when its sign changes. The magnitude of the value is almost irrelevant,
it should however be continuous (but not necessarily smooth) for the sake of
root finding. The steps are shortened as needed to ensure the events occur
at step boundaries (even if the integrator is a fixed-step integrator).
When an event is triggered, several different options are available:
The first case, G-stop, is the most common one. A typical use case is when an ODE must be solved up to some target state is reached, with a known value of the state but an unknown occurrence time. As an example, if we want to monitor a chemical reaction up to some predefined concentration for the first substance, we can use the following switching function setting:
public double g(final ODEStateAndDerivative state) { return state.getState()[0] - targetConcentration; } public Action eventOccurred(final ODEStateAndDerivative state, final boolean increasing) { return STOP; }
The second case, change state vector or derivatives is encountered when dealing with discontinuous dynamical models. A typical case would be the motion of a spacecraft when thrusters are fired for orbital maneuvers. The acceleration is smooth as long as no maneuver are performed, depending only on gravity, drag, third body attraction, radiation pressure. Firing a thruster introduces a discontinuity that must be handled appropriately by the integrator. In such a case, we would use a switching function setting similar to this:
public double g(final ODEStateAndDerivative state) { return (state.getTime() - tManeuverStart) ∗ (state.getTime() - tManeuverStop); } public Action eventOccurred(final ODEStateAndDerivative state, final boolean increasing) { return RESET_DERIVATIVES; }
The third case is useful mainly for monitoring purposes, a simple example is:
public double g(final ODEStateAndDerivative state) { final double[] y = state.getState(); return y[0] - y[1]; } public Action eventOccurred(final ODEStateAndDerivative state, final boolean increasing) { logger.log("y0(t) and y1(t) curves cross at t = " + t); return CONTINUE; }
These rules formalize the concept of event detection and are used to determine when
an event must be reported to the user and the order in which events must occur. These
rules assume the event handler and g function conform to the documentation on
ODEEventHandler
and
ODEIntegrator
.
convergence
parameter and the convergence settings of the root finder specified when
adding
the event handler. eventOccurred()
method is called. An event stops occurring when eventOccurred() returns or when the
handler's
resetState()
method returns if eventOccured() returned
RESET_STATE
. Copyright © 2016-2021 CS GROUP. All rights reserved.