Class RungeKutta5
- java.lang.Object
-
- dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta.RungeKutta5
-
- All Implemented Interfaces:
RungeKuttaStepper
public class RungeKutta5 extends Object implements RungeKuttaStepper
This is the fifth-order Runge-Kutta formula.- See Also:
- "Fae'q A. A. Radwan, "Solutions of Initial Value Problems Using Fifth-Order Runge-Kutta Method Using Excel Spreadsheet," Pakistan Journal of Applied Science 2(1):44-47, 2002."
- "D. Greenspan, "eqs. 2.22," Numerical Solution of Ordinary Differential Equations: for Classical, Relativistic and Nano Systems, 1st ed, Wiley-VCH, 2006."
-
-
Constructor Summary
Constructors Constructor Description RungeKutta5()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vector
step(DerivativeFunction dy, Vector y0, double x0, double x1, double h)
-
-
-
Method Detail
-
step
public Vector step(DerivativeFunction dy, Vector y0, double x0, double x1, double h)
- Specified by:
step
in interfaceRungeKuttaStepper
-
-