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.
ImplicitFirstOrder
Base trait for first-order implicit ordinary differential equation solvers.
ImplicitZerothOrder
Base trait for zeroth-order implicit ordinary differential equation solvers.
OdeSolver
Base trait for ordinary differential equation solvers.

Type Aliases§

Ode1be
Ode23
Ode45
Ode78
Ode89