Uses of Class
dev.nm.analysis.differentialequation.ode.ivp.problem.ODE1stOrder
-
-
Uses of ODE1stOrder in dev.nm.analysis.differentialequation.ode.ivp.problem
Subclasses of ODE1stOrder in dev.nm.analysis.differentialequation.ode.ivp.problem Modifier and Type Class Description classODE1stOrderWith2ndDerivativeSome ODE solvers require the second derivative for more accurate Taylor series approximation. -
Uses of ODE1stOrder in dev.nm.analysis.differentialequation.ode.ivp.solver
Methods in dev.nm.analysis.differentialequation.ode.ivp.solver with parameters of type ODE1stOrder Modifier and Type Method Description Vector[]ODEIntegrator. integrate(ODE1stOrder ode, double[] x)This is the integration method that approximates the solution of a first order ODE.ODESolutionODESolver. solve(ODE1stOrder ode)Solves the given ODE problem. -
Uses of ODE1stOrder in dev.nm.analysis.differentialequation.ode.ivp.solver.extrapolation
Methods in dev.nm.analysis.differentialequation.ode.ivp.solver.extrapolation with parameters of type ODE1stOrder Modifier and Type Method Description ODESolutionBurlischStoerExtrapolation. solve(ODE1stOrder ode)Perform the extrapolation.ODESolutionSemiImplicitExtrapolation. solve(ODE1stOrder ode) -
Uses of ODE1stOrder in dev.nm.analysis.differentialequation.ode.ivp.solver.multistep.adamsbashforthmoulton
Methods in dev.nm.analysis.differentialequation.ode.ivp.solver.multistep.adamsbashforthmoulton with parameters of type ODE1stOrder Modifier and Type Method Description ODESolutionAdamsBashforthMoulton. solve(ODE1stOrder ode)Solve an ODE using the Adams-Bashforth-Moulton method. -
Uses of ODE1stOrder in dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta
Methods in dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta with parameters of type ODE1stOrder Modifier and Type Method Description Vector[]RungeKuttaIntegrator. integrate(ODE1stOrder ode, double[] x)ODESolutionRungeKutta. solve(ODE1stOrder ode)Solves a first order ODE.ODESolutionRungeKuttaFehlberg. solve(ODE1stOrder ode)Solve the given ODE using Runge-Kutta-Fehlberg method.
-