Crate ode_solvers

Source
Expand description

§ODEs Solvers

ode-solvers is a collection of numerical methods to solve ordinary differential equations (ODEs).

Re-exports§

pub use dop853::Dop853;
pub use dopri5::Dopri5;
pub use rk4::Rk4;
pub use dop_shared::System;

Modules§

butcher_tableau
Butcher tableaux containing the coefficients of the Runge-Kutta methods.
continuous_output_model
controller
Adaptive step size control.
dop853
Explicit Runge-Kutta method with Dormand-Prince coefficients of order 8(5,3) and dense output of order 7.
dop_shared
Shared traits and structures for dopri5 and dop853.
dopri5
Explicit Runge-Kutta method with Dormand-Prince coefficients of order 5(4) and dense output of order 4.
rk4
Explicit Runge-Kutta method of order 4 with fixed step size.

Type Aliases§

DVector
A dynamically sized column vector.
OVector
An owned D-dimensional column vector.
SVector
A statically sized D-dimensional column vector.
Vector1
A stack-allocated, 1-dimensional column vector.
Vector2
A stack-allocated, 2-dimensional column vector.
Vector3
A stack-allocated, 3-dimensional column vector.
Vector4
A stack-allocated, 4-dimensional column vector.
Vector5
A stack-allocated, 5-dimensional column vector.
Vector6
A stack-allocated, 6-dimensional column vector.