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
|
Modifier and Type | Interface and Description |
---|---|
interface |
EventHandler
Deprecated.
as of 1.0, replaced with
ODEEventHandler |
Modifier and Type | Method and Description |
---|---|
Collection<ODEEventHandler> |
AbstractIntegrator.getEventHandlers()
Get all the event handlers that have been added to the integrator.
|
Collection<ODEEventHandler> |
ODEIntegrator.getEventHandlers()
Get all the event handlers that have been added to the integrator.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractIntegrator.addEventHandler(ODEEventHandler handler,
double maxCheckInterval,
double convergence,
int maxIterationCount)
Add an event handler to the integrator.
|
void |
ODEIntegrator.addEventHandler(ODEEventHandler handler,
double maxCheckInterval,
double convergence,
int maxIterationCount)
Add an event handler to the integrator.
|
void |
AbstractIntegrator.addEventHandler(ODEEventHandler handler,
double maxCheckInterval,
double convergence,
int maxIterationCount,
BracketedUnivariateSolver<UnivariateFunction> solver)
Add an event handler to the integrator.
|
void |
ODEIntegrator.addEventHandler(ODEEventHandler handler,
double maxCheckInterval,
double convergence,
int maxIterationCount,
BracketedUnivariateSolver<UnivariateFunction> solver)
Add an event handler to the integrator.
|
Modifier and Type | Class and Description |
---|---|
class |
EventFilter
Wrapper used to detect only increasing or decreasing events.
|
Modifier and Type | Method and Description |
---|---|
ODEEventHandler |
EventState.getEventHandler()
Get the underlying event handler.
|
ODEEventHandler |
EventHandlerConfiguration.getEventHandler()
Get the underlying event handler.
|
Constructor and Description |
---|
EventFilter(ODEEventHandler rawHandler,
FilterType filter)
Wrap an
event handler . |
EventState(ODEEventHandler handler,
double maxCheckInterval,
double convergence,
int maxIterationCount,
BracketedUnivariateSolver<UnivariateFunction> solver)
Simple constructor.
|
Copyright © 2016-2021 CS GROUP. All rights reserved.