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 | Description |
---|---|---|
interface |
EventHandler |
Deprecated.
as of 1.0, replaced with
ODEEventHandler |
Modifier and Type | Method | 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 | Description |
---|---|---|
void |
AbstractIntegrator.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) |
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 | Description |
---|---|---|
class |
EventFilter |
Wrapper used to detect only increasing or decreasing events.
|
Modifier and Type | Method | Description |
---|---|---|
ODEEventHandler |
EventState.getEventHandler() |
Get the underlying event handler.
|
Constructor | 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–2018 Hipparchus.org. All rights reserved.