Module integrate

Source
Expand description

Integration and ODEs.

Structs§

BackwardEuler
Implicit, single-stage, first-order, fixed-step, Runge-Kutta method.
BogackiShampine
Explicit, three-stage, third-order, variable-step, Runge-Kutta method.
DormandPrince
Explicit, six-stage, fifth-order, variable-step, Runge-Kutta method.
Verner8
Explicit, thirteen-stage, eighth-order, variable-step, Runge-Kutta method.
Verner9
Explicit, sixteen-stage, ninth-order, variable-step, Runge-Kutta method.

Enums§

IntegrationError
Possible errors encountered when integrating.

Traits§

Explicit
Base trait for explicit ordinary differential equation solvers.
Implicit
Base trait for implicit ordinary differential equation solvers.
OdeSolver
Base trait for ordinary differential equation solvers.

Type Aliases§

Ode1be
Ode23
Ode45
Ode78
Ode89