Uses of Interface
org.hipparchus.ode.events.ODEEventDetector
-
Packages that use ODEEventDetector Package Description org.hipparchus.migration.ode.events This package provides migration classes from Apache Commons Math to Hipparchus.org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.ode.events Events -
-
Uses of ODEEventDetector in org.hipparchus.migration.ode.events
Subinterfaces of ODEEventDetector in org.hipparchus.migration.ode.events Modifier and Type Interface Description interface
EventHandler
Deprecated.as of 1.0, replaced withODEEventDetector
-
Uses of ODEEventDetector in org.hipparchus.ode
Methods in org.hipparchus.ode that return types with arguments of type ODEEventDetector Modifier and Type Method Description List<ODEEventDetector>
AbstractIntegrator. getEventDetectors()
Get all the event detectors that have been added to the integrator.List<ODEEventDetector>
ODEIntegrator. getEventDetectors()
Get all the event detectors that have been added to the integrator.Methods in org.hipparchus.ode with parameters of type ODEEventDetector Modifier and Type Method Description void
AbstractIntegrator. addEventDetector(ODEEventDetector detector)
Add an event detector to the integrator.void
ODEIntegrator. addEventDetector(ODEEventDetector detector)
Add an event detector to the integrator. -
Uses of ODEEventDetector in org.hipparchus.ode.events
Classes in org.hipparchus.ode.events with type parameters of type ODEEventDetector Modifier and Type Class Description class
EventSlopeFilter<T extends ODEEventDetector>
Wrapper used to detect only increasing or decreasing events.Classes in org.hipparchus.ode.events that implement ODEEventDetector Modifier and Type Class Description class
AbstractODEDetector<T extends AbstractODEDetector<T>>
Base class for #@linkODEEventDetector
.class
EventSlopeFilter<T extends ODEEventDetector>
Wrapper used to detect only increasing or decreasing events.Methods in org.hipparchus.ode.events that return ODEEventDetector Modifier and Type Method Description ODEEventDetector
DetectorBasedEventState. getEventDetector()
Get the underlying event detector.Methods in org.hipparchus.ode.events with parameters of type ODEEventDetector Modifier and Type Method Description Action
ODEEventHandler. eventOccurred(ODEStateAndDerivative state, ODEEventDetector detector, boolean increasing)
Handle an event and choose what to do next.default void
ODEEventHandler. init(ODEStateAndDerivative initialState, double finalTime, ODEEventDetector detector)
Initialize event handler at the start of an ODE integration.default ODEState
ODEEventHandler. resetState(ODEEventDetector detector, ODEStateAndDerivative state)
Reset the state prior to continue the integration.Constructors in org.hipparchus.ode.events with parameters of type ODEEventDetector Constructor Description DetectorBasedEventState(ODEEventDetector detector)
Simple constructor.
-