Uses of Class
org.apache.commons.math3.ode.EquationsMapper
-
Packages that use EquationsMapper 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. -
-
Uses of EquationsMapper in org.apache.commons.math3.ode
Fields in org.apache.commons.math3.ode declared as EquationsMapper Modifier and Type Field Description private EquationsMapper
ExpandableStatefulODE.SecondaryComponent. mapper
Mapper between local and complete arrays.private EquationsMapper
ExpandableStatefulODE. primaryMapper
Mapper for primary equation.Methods in org.apache.commons.math3.ode that return EquationsMapper Modifier and Type Method 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. -
Uses of EquationsMapper in org.apache.commons.math3.ode.nonstiff
Methods in org.apache.commons.math3.ode.nonstiff with parameters of type EquationsMapper Modifier and Type Method Description void
DormandPrince54StepInterpolator. reinitialize(AbstractIntegrator integrator, double[] y, double[][] yDotK, boolean forward, EquationsMapper primaryMapper, EquationsMapper[] secondaryMappers)
Reinitialize the instancevoid
DormandPrince853StepInterpolator. reinitialize(AbstractIntegrator integrator, double[] y, double[][] yDotK, boolean forward, EquationsMapper primaryMapper, EquationsMapper[] secondaryMappers)
Reinitialize the instancevoid
RungeKuttaStepInterpolator. reinitialize(AbstractIntegrator rkIntegrator, double[] y, double[][] yDotArray, boolean forward, EquationsMapper primaryMapper, EquationsMapper[] secondaryMappers)
Reinitialize the instanceConstructors in org.apache.commons.math3.ode.nonstiff with parameters of type EquationsMapper Constructor Description GraggBulirschStoerStepInterpolator(double[] y, double[] y0Dot, double[] y1, double[] y1Dot, double[][] yMidDots, boolean forward, EquationsMapper primaryMapper, EquationsMapper[] secondaryMappers)
Simple constructor. -
Uses of EquationsMapper in org.apache.commons.math3.ode.sampling
Fields in org.apache.commons.math3.ode.sampling declared as EquationsMapper Modifier and Type Field Description private EquationsMapper
AbstractStepInterpolator. primaryMapper
Equations mapper for the primary equations set.private EquationsMapper[]
AbstractStepInterpolator. secondaryMappers
Equations mappers for the secondary equations sets.Methods in org.apache.commons.math3.ode.sampling with parameters of type EquationsMapper Modifier and Type Method Description protected void
AbstractStepInterpolator. reinitialize(double[] y, boolean isForward, EquationsMapper primary, EquationsMapper[] secondary)
Reinitialize the instancevoid
NordsieckStepInterpolator. reinitialize(double[] y, boolean forward, EquationsMapper primaryMapper, EquationsMapper[] secondaryMappers)
Reinitialize the instance.Constructors in org.apache.commons.math3.ode.sampling with parameters of type EquationsMapper Constructor Description AbstractStepInterpolator(double[] y, boolean forward, EquationsMapper primaryMapper, EquationsMapper[] secondaryMappers)
Simple constructor.
-