Uses of Class
org.apache.commons.math3.ode.nonstiff.RungeKuttaStepInterpolator
-
Packages that use RungeKuttaStepInterpolator Package Description org.apache.commons.math3.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems. -
-
Uses of RungeKuttaStepInterpolator in org.apache.commons.math3.ode.nonstiff
Subclasses of RungeKuttaStepInterpolator in org.apache.commons.math3.ode.nonstiff Modifier and Type Class Description (package private) classClassicalRungeKuttaStepInterpolatorThis class implements a step interpolator for the classical fourth order Runge-Kutta integrator.(package private) classDormandPrince54StepInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 5(4) Dormand-Prince integrator.(package private) classDormandPrince853StepInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 8(5,3) Dormand-Prince integrator.(package private) classEulerStepInterpolatorThis class implements a linear interpolator for step.(package private) classGillStepInterpolatorThis class implements a step interpolator for the Gill fourth order Runge-Kutta integrator.(package private) classHighamHall54StepInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 5(4) Higham and Hall integrator.(package private) classLutherStepInterpolatorThis class represents an interpolator over the last step during an ODE integration for the 6th order Luther integrator.(package private) classMidpointStepInterpolatorThis class implements a step interpolator for second order Runge-Kutta integrator.(package private) classThreeEighthesStepInterpolatorThis class implements a step interpolator for the 3/8 fourth order Runge-Kutta integrator.Fields in org.apache.commons.math3.ode.nonstiff declared as RungeKuttaStepInterpolator Modifier and Type Field Description private RungeKuttaStepInterpolatorEmbeddedRungeKuttaIntegrator. prototypePrototype of the step interpolator.private RungeKuttaStepInterpolatorRungeKuttaIntegrator. prototypePrototype of the step interpolator.Constructors in org.apache.commons.math3.ode.nonstiff with parameters of type RungeKuttaStepInterpolator Constructor Description EmbeddedRungeKuttaIntegrator(java.lang.String name, boolean fsal, double[] c, double[][] a, double[] b, RungeKuttaStepInterpolator prototype, double minStep, double maxStep, double[] vecAbsoluteTolerance, double[] vecRelativeTolerance)Build a Runge-Kutta integrator with the given Butcher array.EmbeddedRungeKuttaIntegrator(java.lang.String name, boolean fsal, double[] c, double[][] a, double[] b, RungeKuttaStepInterpolator prototype, double minStep, double maxStep, double scalAbsoluteTolerance, double scalRelativeTolerance)Build a Runge-Kutta integrator with the given Butcher array.RungeKuttaIntegrator(java.lang.String name, double[] c, double[][] a, double[] b, RungeKuttaStepInterpolator prototype, double step)Simple constructor.RungeKuttaStepInterpolator(RungeKuttaStepInterpolator interpolator)Copy constructor.
-