Package | Description |
---|---|
org.hipparchus.ode |
This package provides classes to solve Ordinary Differential Equations problems.
|
org.hipparchus.ode.events |
Events
|
Modifier and Type | Method and Description |
---|---|
Collection<FieldODEEventHandler<T>> |
FieldODEIntegrator.getEventHandlers()
Get all the event handlers that have been added to the integrator.
|
Collection<FieldODEEventHandler<T>> |
AbstractFieldIntegrator.getEventHandlers()
Get all the event handlers that have been added to the integrator.
|
Modifier and Type | Method and Description |
---|---|
void |
FieldODEIntegrator.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)
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.
|
void |
AbstractFieldIntegrator.addEventHandler(FieldODEEventHandler<T> handler,
double maxCheckInterval,
double convergence,
int maxIterationCount,
BracketedRealFieldUnivariateSolver<T> solver)
Add an event handler to the integrator.
|
Modifier and Type | Class and Description |
---|---|
class |
FieldEventFilter<T extends CalculusFieldElement<T>>
Wrapper used to detect only increasing or decreasing events.
|
Modifier and Type | Method and Description |
---|---|
FieldODEEventHandler<T> |
FieldEventState.getEventHandler()
Get the underlying event handler.
|
FieldODEEventHandler<T> |
FieldEventHandlerConfiguration.getEventHandler()
Get the underlying event handler.
|
Constructor and Description |
---|
FieldEventFilter(Field<T> field,
FieldODEEventHandler<T> rawHandler,
FilterType filter)
Wrap an
event handler . |
FieldEventState(FieldODEEventHandler<T> handler,
double maxCheckInterval,
T convergence,
int maxIterationCount,
BracketedRealFieldUnivariateSolver<T> solver)
Simple constructor.
|
Copyright © 2016-2021 CS GROUP. All rights reserved.