Module integrate

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.
BogackiShampineFixedStep
Fixed-step variant of the BogackiShampine method.
DormandPrince
Explicit, six-stage, fifth-order, variable-step, Runge-Kutta method.
DormandPrinceFixedStep
Fixed-step variant of the DormandPrince method.
Euler
Explicit, single-stage, first-order, fixed-step, Runge-Kutta method.
Heun
Explicit, two-stage, second-order, fixed-step, Runge-Kutta method.
ImplicitMidpoint
Implicit, single-stage, second-order, fixed-step, Runge-Kutta method.
Midpoint
Explicit, two-stage, second-order, fixed-step, Runge-Kutta method.
Ralston
Explicit, two-stage, second-order, fixed-step, Runge-Kutta method.
Trapezoidal
Implicit, two-stage, second-order, fixed-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
Explicit ordinary differential equation solvers.
ExplicitInternalVariables
Explicit ordinary differential equation solvers with internal variables.
FixedStep
Fixed-step ordinary differential equation solvers.
FixedStepExplicit
Fixed-step explicit ordinary differential equation solvers.
ImplicitFirstOrder
First-order implicit ordinary differential equation solvers.
ImplicitZerothOrder
Zeroth-order implicit ordinary differential equation solvers.
OdeSolver
Ordinary differential equation solvers.
VariableStep
Variable-step ordinary differential equation solvers.
VariableStepExplicit
Variable-step explicit ordinary differential equation solvers.
VariableStepExplicitInternalVariables
Variable-step explicit ordinary differential equation solvers with internal variables.

Type Aliases§

Ode1
Alias for Euler.
Ode2
Alias for Heun.
Ode3
Alias for BogackiShampineFixedStep.
Ode5
Alias for DormandPrinceFixedStep.
Ode1be
Alias for BackwardEuler.
Ode23
Alias for BogackiShampine.
Ode45
Alias for DormandPrince.
Ode78
Alias for Verner8.
Ode89
Alias for Verner9.