Package | Description |
---|---|
org.apache.commons.math3.ode |
This package provides classes to solve Ordinary Differential Equations problems.
|
org.apache.commons.math3.ode.nonstiff |
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
|
org.apache.commons.math3.ode.sampling |
This package provides classes to handle sampling steps during
Ordinary Differential Equations integration.
|
Modifier and Type | Field and Description |
---|---|
private EquationsMapper |
ExpandableStatefulODE.SecondaryComponent.mapper
Mapper between local and complete arrays.
|
private EquationsMapper |
ExpandableStatefulODE.primaryMapper
Mapper for primary equation.
|
Modifier and Type | Method and Description |
---|---|
EquationsMapper |
ExpandableStatefulODE.getPrimaryMapper()
Get an equations mapper for the primary equations set.
|
EquationsMapper[] |
ExpandableStatefulODE.getSecondaryMappers()
Get the equations mappers for the secondary equations sets.
|
Modifier and Type | Method and Description |
---|---|
void |
DormandPrince54StepInterpolator.reinitialize(AbstractIntegrator integrator,
double[] y,
double[][] yDotK,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Reinitialize the instance
|
void |
DormandPrince54StepInterpolator.reinitialize(AbstractIntegrator integrator,
double[] y,
double[][] yDotK,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Reinitialize the instance
|
void |
DormandPrince853StepInterpolator.reinitialize(AbstractIntegrator integrator,
double[] y,
double[][] yDotK,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Reinitialize the instance
|
void |
DormandPrince853StepInterpolator.reinitialize(AbstractIntegrator integrator,
double[] y,
double[][] yDotK,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Reinitialize the instance
|
void |
RungeKuttaStepInterpolator.reinitialize(AbstractIntegrator rkIntegrator,
double[] y,
double[][] yDotArray,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Reinitialize the instance
|
void |
RungeKuttaStepInterpolator.reinitialize(AbstractIntegrator rkIntegrator,
double[] y,
double[][] yDotArray,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Reinitialize the instance
|
Constructor and Description |
---|
GraggBulirschStoerStepInterpolator(double[] y,
double[] y0Dot,
double[] y1,
double[] y1Dot,
double[][] yMidDots,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Simple constructor.
|
GraggBulirschStoerStepInterpolator(double[] y,
double[] y0Dot,
double[] y1,
double[] y1Dot,
double[][] yMidDots,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Simple constructor.
|
Modifier and Type | Field and Description |
---|---|
private EquationsMapper |
AbstractStepInterpolator.primaryMapper
Equations mapper for the primary equations set.
|
private EquationsMapper[] |
AbstractStepInterpolator.secondaryMappers
Equations mappers for the secondary equations sets.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractStepInterpolator.reinitialize(double[] y,
boolean isForward,
EquationsMapper primary,
EquationsMapper[] secondary)
Reinitialize the instance
|
protected void |
AbstractStepInterpolator.reinitialize(double[] y,
boolean isForward,
EquationsMapper primary,
EquationsMapper[] secondary)
Reinitialize the instance
|
void |
NordsieckStepInterpolator.reinitialize(double[] y,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Reinitialize the instance.
|
void |
NordsieckStepInterpolator.reinitialize(double[] y,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Reinitialize the instance.
|
Constructor and Description |
---|
AbstractStepInterpolator(double[] y,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Simple constructor.
|
AbstractStepInterpolator(double[] y,
boolean forward,
EquationsMapper primaryMapper,
EquationsMapper[] secondaryMappers)
Simple constructor.
|