Uses of Interface
dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta.RungeKuttaStepper
-
Packages that use RungeKuttaStepper Package Description dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta -
-
Uses of RungeKuttaStepper in dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta
Classes in dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta that implement RungeKuttaStepper Modifier and Type Class Description class
RungeKutta1
This is the first-order Runge-Kutta formula, which is the same as the Euler method.class
RungeKutta10
This is the tenth-order Runge-Kutta formula.class
RungeKutta2
This is the second-order Runge-Kutta formula, which can be implemented efficiently with a three-step algorithm.class
RungeKutta3
This is the third-order Runge-Kutta formula.class
RungeKutta4
This is the fourth-order Runge-Kutta formula.class
RungeKutta5
This is the fifth-order Runge-Kutta formula.class
RungeKutta6
This is the sixth-order Runge-Kutta formula.class
RungeKutta7
This is the seventh-order Runge-Kutta formula.class
RungeKutta8
This is the eighth-order Runge-Kutta formula.Constructors in dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta with parameters of type RungeKuttaStepper Constructor Description RungeKutta(RungeKuttaStepper stepper, double h)
Constructs a Runge-Kutta algorithm with the given integrator and the constant step size.RungeKutta(RungeKuttaStepper stepper, int N)
Constructs a Runge-Kutta algorithm with the given integrator and the constant number of steps.RungeKuttaIntegrator(RungeKuttaStepper stepper)
-