Interface ODESolver
-
- All Known Implementing Classes:
AdamsBashforthMoulton,BurlischStoerExtrapolation,EulerMethod,RungeKutta,RungeKuttaFehlberg,SemiImplicitExtrapolation
public interface ODESolverSolver for first order ODE problems.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ODESolutionsolve(ODE1stOrder ode)Solves the given ODE problem.
-
-
-
Method Detail
-
solve
ODESolution solve(ODE1stOrder ode)
Solves the given ODE problem.- Parameters:
ode- the ODE problem- Returns:
- the solution
-
-