Uses of Class
org.hipparchus.ode.EquationsMapper
Packages that use EquationsMapper
Package
Description
This package provides classes to solve Ordinary Differential Equations problems.
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
This package provides classes to handle sampling steps during
Ordinary Differential Equations integration.
-
Uses of EquationsMapper in org.hipparchus.ode
Methods in org.hipparchus.ode that return EquationsMapperModifier and TypeMethodDescriptionExpandableODE.getMapper()Get the mapper for the set of equations. -
Uses of EquationsMapper in org.hipparchus.ode.nonstiff
Methods in org.hipparchus.ode.nonstiff with parameters of type EquationsMapperModifier and TypeMethodDescriptionprotected org.hipparchus.ode.nonstiff.ClassicalRungeKuttaStateInterpolatorClassicalRungeKuttaIntegrator.createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper) Create an interpolator.protected org.hipparchus.ode.nonstiff.DormandPrince54StateInterpolatorDormandPrince54Integrator.createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper) Create an interpolator.protected org.hipparchus.ode.nonstiff.DormandPrince853StateInterpolatorDormandPrince853Integrator.createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper) Create an interpolator.protected abstract org.hipparchus.ode.nonstiff.RungeKuttaStateInterpolatorEmbeddedRungeKuttaIntegrator.createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper) Create an interpolator.protected org.hipparchus.ode.nonstiff.EulerStateInterpolatorEulerIntegrator.createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper) Create an interpolator.protected org.hipparchus.ode.nonstiff.GillStateInterpolatorGillIntegrator.createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper) Create an interpolator.protected org.hipparchus.ode.nonstiff.HighamHall54StateInterpolatorHighamHall54Integrator.createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper) Create an interpolator.protected org.hipparchus.ode.nonstiff.LutherStateInterpolatorLutherIntegrator.createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper) Create an interpolator.protected org.hipparchus.ode.nonstiff.MidpointStateInterpolatorMidpointIntegrator.createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper) Create an interpolator.protected abstract org.hipparchus.ode.nonstiff.RungeKuttaStateInterpolatorRungeKuttaIntegrator.createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper) Create an interpolator.protected org.hipparchus.ode.nonstiff.ThreeEighthesStateInterpolatorThreeEighthesIntegrator.createInterpolator(boolean forward, double[][] yDotK, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper mapper) Create an interpolator.protected org.hipparchus.ode.nonstiff.AdamsStateInterpolatorAdamsBashforthIntegrator.finalizeStep(double stepSize, double[] predictedState, double[] predictedScaled, Array2DRowRealMatrix predictedNordsieck, boolean isForward, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper equationsMapper) Finalize the step.protected abstract org.hipparchus.ode.nonstiff.AdamsStateInterpolatorAdamsIntegrator.finalizeStep(double stepSize, double[] predictedState, double[] predictedScaled, Array2DRowRealMatrix predictedNordsieck, boolean isForward, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper equationsMapper) Finalize the step.protected org.hipparchus.ode.nonstiff.AdamsStateInterpolatorAdamsMoultonIntegrator.finalizeStep(double stepSize, double[] predictedState, double[] predictedScaled, Array2DRowRealMatrix predictedNordsieck, boolean isForward, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, EquationsMapper equationsMapper) Finalize the step. -
Uses of EquationsMapper in org.hipparchus.ode.sampling
Methods in org.hipparchus.ode.sampling that return EquationsMapperModifier and TypeMethodDescriptionprotected EquationsMapperAbstractODEStateInterpolator.getMapper()Get the mapper for ODE equations primary and secondary components.Methods in org.hipparchus.ode.sampling with parameters of type EquationsMapperModifier and TypeMethodDescriptionprotected abstract ODEStateAndDerivativeAbstractODEStateInterpolator.computeInterpolatedStateAndDerivatives(EquationsMapper equationsMapper, double time, double theta, double thetaH, double oneMinusThetaH) Compute the state and derivatives at the interpolated time.protected abstract AbstractODEStateInterpolatorAbstractODEStateInterpolator.create(boolean newForward, ODEStateAndDerivative newGlobalPreviousState, ODEStateAndDerivative newGlobalCurrentState, ODEStateAndDerivative newSoftPreviousState, ODEStateAndDerivative newSoftCurrentState, EquationsMapper newMapper) Create a new instance.Constructors in org.hipparchus.ode.sampling with parameters of type EquationsMapperModifierConstructorDescriptionprotectedAbstractODEStateInterpolator(boolean isForward, ODEStateAndDerivative globalPreviousState, ODEStateAndDerivative globalCurrentState, ODEStateAndDerivative softPreviousState, ODEStateAndDerivative softCurrentState, EquationsMapper equationsMapper) Simple constructor.