Uses of Interface
org.apache.commons.math3.ode.events.EventHandler
Packages that use EventHandler
Package
Description
This package provides classes to solve Ordinary Differential Equations problems.
This package provides classes to handle discrete events occurring during
Ordinary Differential Equations integration.
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
-
Uses of EventHandler in org.apache.commons.math3.ode
Methods in org.apache.commons.math3.ode that return types with arguments of type EventHandlerModifier and TypeMethodDescriptionAbstractIntegrator.getEventHandlers()
Get all the event handlers that have been added to the integrator.ODEIntegrator.getEventHandlers()
Get all the event handlers that have been added to the integrator.Methods in org.apache.commons.math3.ode with parameters of type EventHandlerModifier and TypeMethodDescriptionvoid
AbstractIntegrator.addEventHandler
(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount) Add an event handler to the integrator.void
AbstractIntegrator.addEventHandler
(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount, UnivariateSolver solver) Add an event handler to the integrator.void
ODEIntegrator.addEventHandler
(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount) Add an event handler to the integrator.void
ODEIntegrator.addEventHandler
(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount, UnivariateSolver solver) Add an event handler to the integrator. -
Uses of EventHandler in org.apache.commons.math3.ode.events
Classes in org.apache.commons.math3.ode.events that implement EventHandlerModifier and TypeClassDescriptionclass
Wrapper used to detect only increasing or decreasing events.Methods in org.apache.commons.math3.ode.events that return EventHandlerConstructors in org.apache.commons.math3.ode.events with parameters of type EventHandlerModifierConstructorDescriptionEventFilter
(EventHandler rawHandler, FilterType filter) Wrap anevent handler
.EventState
(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount, UnivariateSolver solver) Simple constructor. -
Uses of EventHandler in org.apache.commons.math3.ode.nonstiff
Methods in org.apache.commons.math3.ode.nonstiff with parameters of type EventHandlerModifier and TypeMethodDescriptionvoid
GraggBulirschStoerIntegrator.addEventHandler
(EventHandler function, double maxCheckInterval, double convergence, int maxIterationCount, UnivariateSolver solver) Add an event handler to the integrator.