Package org.hipparchus.ode
Class FieldExpandableODE<T extends RealFieldElement<T>>
- java.lang.Object
-
- org.hipparchus.ode.FieldExpandableODE<T>
-
- Type Parameters:
T
- the type of the field elements
public class FieldExpandableODE<T extends RealFieldElement<T>> extends Object
This class represents a combined set of first order differential equations, with at least a primary set of equations expandable by some sets of secondary equations.One typical use case is the computation of the Jacobian matrix for some ODE. In this case, the primary set of equations corresponds to the raw ODE, and we add to this set another bunch of secondary equations which represent the Jacobian matrix of the primary set.
We want the integrator to use only the primary set to estimate the errors and hence the step sizes. It should not use the secondary equations in this computation. The
integrator
will be able to know where the primary set ends and so where the secondary sets begin.
-
-
Constructor Summary
Constructors Constructor Description FieldExpandableODE(FieldOrdinaryDifferentialEquation<T> primary)
Build an expandable set from its primary ODE set.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
addSecondaryEquations(FieldSecondaryODE<T> secondary)
Add a set of secondary equations to be integrated along with the primary set.T[]
computeDerivatives(T t, T[] y)
Get the current time derivative of the complete state vector.FieldEquationsMapper<T>
getMapper()
Get the mapper for the set of equations.void
init(FieldODEState<T> s0, T finalTime)
Initialize equations at the start of an ODE integration.
-
-
-
Constructor Detail
-
FieldExpandableODE
public FieldExpandableODE(FieldOrdinaryDifferentialEquation<T> primary)
Build an expandable set from its primary ODE set.- Parameters:
primary
- the primary set of differential equations to be integrated.
-
-
Method Detail
-
getMapper
public FieldEquationsMapper<T> getMapper()
Get the mapper for the set of equations.- Returns:
- mapper for the set of equations
-
addSecondaryEquations
public int addSecondaryEquations(FieldSecondaryODE<T> secondary)
Add a set of secondary equations to be integrated along with the primary set.- Parameters:
secondary
- secondary equations set- Returns:
- index of the secondary equation in the expanded state, to be used
as the parameter to
FieldODEState.getSecondaryState(int)
andFieldODEStateAndDerivative.getSecondaryDerivative(int)
(beware index 0 corresponds to primary state, secondary states start at 1)
-
init
public void init(FieldODEState<T> s0, T finalTime)
Initialize equations at the start of an ODE integration.- Parameters:
s0
- state at integration startfinalTime
- target time for the integration- Throws:
MathIllegalStateException
- if the number of functions evaluations is exceededMathIllegalArgumentException
- if arrays dimensions do not match equations settings
-
computeDerivatives
public T[] computeDerivatives(T t, T[] y) throws MathIllegalArgumentException, MathIllegalStateException
Get the current time derivative of the complete state vector.- Parameters:
t
- current value of the independent time variabley
- array containing the current value of the complete state vector- Returns:
- time derivative of the complete state vector
- Throws:
MathIllegalStateException
- if the number of functions evaluations is exceededMathIllegalArgumentException
- if arrays dimensions do not match equations settings
-
-