Uses of Interface
dev.nm.analysis.differentialequation.ode.ivp.solver.ODEIntegrator
-
Packages that use ODEIntegrator Package Description dev.nm.analysis.differentialequation.ode.ivp.solver.multistep.adamsbashforthmoulton dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta -
-
Uses of ODEIntegrator in dev.nm.analysis.differentialequation.ode.ivp.solver.multistep.adamsbashforthmoulton
Constructors in dev.nm.analysis.differentialequation.ode.ivp.solver.multistep.adamsbashforthmoulton with parameters of type ODEIntegrator Constructor Description AdamsBashforthMoulton(ABMPredictorCorrector predictorCorrector, double stepSize, ODEIntegrator integrator)
Create a new instance of the Adams-Bashforth-Moulton method using the given predictor-corrector pair and the given ODE integrator. -
Uses of ODEIntegrator in dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta
Classes in dev.nm.analysis.differentialequation.ode.ivp.solver.rungekutta that implement ODEIntegrator Modifier and Type Class Description class
RungeKuttaIntegrator
This integrator works with a single-step stepper which estimates the solution for the next step given the solution of the current step.
-