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 EquationsMapperExpandableStatefulODE.SecondaryComponent. mapperMapper between local and complete arrays.private EquationsMapperExpandableStatefulODE. primaryMapperMapper for primary equation.Methods in org.apache.commons.math3.ode that return EquationsMapper Modifier and Type Method Description EquationsMapperExpandableStatefulODE. 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 voidDormandPrince54StepInterpolator. reinitialize(AbstractIntegrator integrator, double[] y, double[][] yDotK, boolean forward, EquationsMapper primaryMapper, EquationsMapper[] secondaryMappers)Reinitialize the instancevoidDormandPrince853StepInterpolator. reinitialize(AbstractIntegrator integrator, double[] y, double[][] yDotK, boolean forward, EquationsMapper primaryMapper, EquationsMapper[] secondaryMappers)Reinitialize the instancevoidRungeKuttaStepInterpolator. 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 EquationsMapperAbstractStepInterpolator. primaryMapperEquations mapper for the primary equations set.private EquationsMapper[]AbstractStepInterpolator. secondaryMappersEquations 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 voidAbstractStepInterpolator. reinitialize(double[] y, boolean isForward, EquationsMapper primary, EquationsMapper[] secondary)Reinitialize the instancevoidNordsieckStepInterpolator. 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.
-