Uses of Interface
org.hipparchus.ode.events.ODEEventDetector
Packages that use ODEEventDetector
Package
Description
This package provides classes to solve Ordinary Differential Equations problems.
Events
-
Uses of ODEEventDetector in org.hipparchus.ode
Methods in org.hipparchus.ode that return types with arguments of type ODEEventDetectorModifier and TypeMethodDescriptionAbstractIntegrator.getEventDetectors()Get all the event detectors that have been added to the integrator.ODEIntegrator.getEventDetectors()Get all the event detectors that have been added to the integrator.Methods in org.hipparchus.ode with parameters of type ODEEventDetectorModifier and TypeMethodDescriptionvoidAbstractIntegrator.addEventDetector(ODEEventDetector detector) Add an event detector to the integrator.voidODEIntegrator.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 ODEEventDetectorModifier and TypeClassDescriptionclassEventSlopeFilter<T extends ODEEventDetector>Wrapper used to detect only increasing or decreasing events.Classes in org.hipparchus.ode.events that implement ODEEventDetectorModifier and TypeClassDescriptionclassAbstractODEDetector<T extends AbstractODEDetector<T>>Base class for #@linkODEEventDetector.classEventSlopeFilter<T extends ODEEventDetector>Wrapper used to detect only increasing or decreasing events.Methods in org.hipparchus.ode.events that return ODEEventDetectorModifier and TypeMethodDescriptionDetectorBasedEventState.getEventDetector()Get the underlying event detector.Methods in org.hipparchus.ode.events with parameters of type ODEEventDetectorModifier and TypeMethodDescriptionODEEventHandler.eventOccurred(ODEStateAndDerivative state, ODEEventDetector detector, boolean increasing) Handle an event and choose what to do next.default voidODEEventHandler.init(ODEStateAndDerivative initialState, double finalTime, ODEEventDetector detector) Initialize event handler at the start of an ODE integration.default ODEStateODEEventHandler.resetState(ODEEventDetector detector, ODEStateAndDerivative state) Reset the state prior to continue the integration.Constructors in org.hipparchus.ode.events with parameters of type ODEEventDetectorModifierConstructorDescriptionDetectorBasedEventState(ODEEventDetector detector) Simple constructor.