Uses of Interface
org.hipparchus.ode.events.FieldODEEventDetector
-
Packages that use FieldODEEventDetector Package Description org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.ode.events Events -
-
Uses of FieldODEEventDetector in org.hipparchus.ode
Methods in org.hipparchus.ode that return types with arguments of type FieldODEEventDetector Modifier and Type Method Description List<FieldODEEventDetector<T>>
AbstractFieldIntegrator. getEventDetectors()
Get all the event detectors that have been added to the integrator.List<FieldODEEventDetector<T>>
FieldODEIntegrator. getEventDetectors()
Get all the event detectors that have been added to the integrator.Methods in org.hipparchus.ode with parameters of type FieldODEEventDetector Modifier and Type Method Description void
AbstractFieldIntegrator. addEventDetector(FieldODEEventDetector<T> detector)
Add an event detector to the integrator.void
FieldODEIntegrator. addEventDetector(FieldODEEventDetector<T> detector)
Add an event detector to the integrator. -
Uses of FieldODEEventDetector in org.hipparchus.ode.events
Classes in org.hipparchus.ode.events with type parameters of type FieldODEEventDetector Modifier and Type Class Description class
FieldEventSlopeFilter<T extends FieldODEEventDetector<E>,E extends CalculusFieldElement<E>>
Wrapper used to detect only increasing or decreasing events.Classes in org.hipparchus.ode.events that implement FieldODEEventDetector Modifier and Type Class Description class
AbstractFieldODEDetector<T extends AbstractFieldODEDetector<T,E>,E extends CalculusFieldElement<E>>
Base class for #@linkFieldODEEventDetector
.class
FieldEventSlopeFilter<T extends FieldODEEventDetector<E>,E extends CalculusFieldElement<E>>
Wrapper used to detect only increasing or decreasing events.Methods in org.hipparchus.ode.events that return FieldODEEventDetector Modifier and Type Method Description FieldODEEventDetector<T>
FieldDetectorBasedEventState. getEventDetector()
Get the underlying event detector.Methods in org.hipparchus.ode.events with parameters of type FieldODEEventDetector Modifier and Type Method Description Action
FieldODEEventHandler. eventOccurred(FieldODEStateAndDerivative<T> state, FieldODEEventDetector<T> detector, boolean increasing)
Handle an event and choose what to do next.default void
FieldODEEventHandler. init(FieldODEStateAndDerivative<T> initialState, T finalTime, FieldODEEventDetector<T> detector)
Initialize event handler at the start of an ODE integration.default FieldODEState<T>
FieldODEEventHandler. resetState(FieldODEEventDetector<T> detector, FieldODEStateAndDerivative<T> state)
Reset the state prior to continue the integration.Constructors in org.hipparchus.ode.events with parameters of type FieldODEEventDetector Constructor Description FieldDetectorBasedEventState(FieldODEEventDetector<T> detector)
Simple constructor.
-