Uses of Interface
org.hipparchus.ode.events.FieldODEEventHandler
-
Packages that use FieldODEEventHandler Package Description org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.ode.events Events -
-
Uses of FieldODEEventHandler in org.hipparchus.ode
Methods in org.hipparchus.ode that return types with arguments of type FieldODEEventHandler Modifier and Type Method Description Collection<FieldODEEventHandler<T>>
AbstractFieldIntegrator. getEventHandlers()
Get all the event handlers that have been added to the integrator.Collection<FieldODEEventHandler<T>>
FieldODEIntegrator. getEventHandlers()
Get all the event handlers that have been added to the integrator.Methods in org.hipparchus.ode with parameters of type FieldODEEventHandler Modifier and Type Method Description void
AbstractFieldIntegrator. addEventHandler(FieldODEEventHandler<T> handler, double maxCheckInterval, double convergence, int maxIterationCount)
Add an event handler to the integrator.void
AbstractFieldIntegrator. addEventHandler(FieldODEEventHandler<T> handler, double maxCheckInterval, double convergence, int maxIterationCount, BracketedRealFieldUnivariateSolver<T> solver)
Add an event handler to the integrator.void
FieldODEIntegrator. addEventHandler(FieldODEEventHandler<T> handler, double maxCheckInterval, double convergence, int maxIterationCount)
Add an event handler to the integrator.void
FieldODEIntegrator. addEventHandler(FieldODEEventHandler<T> handler, double maxCheckInterval, double convergence, int maxIterationCount, BracketedRealFieldUnivariateSolver<T> solver)
Add an event handler to the integrator. -
Uses of FieldODEEventHandler in org.hipparchus.ode.events
Methods in org.hipparchus.ode.events that return FieldODEEventHandler Modifier and Type Method Description FieldODEEventHandler<T>
FieldEventState. getEventHandler()
Get the underlying event handler.Constructors in org.hipparchus.ode.events with parameters of type FieldODEEventHandler Constructor Description FieldEventState(FieldODEEventHandler<T> handler, double maxCheckInterval, T convergence, int maxIterationCount, BracketedRealFieldUnivariateSolver<T> solver)
Simple constructor.
-