Crate ode_solvers[][src]

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 tableaux containing the coefficients of the Runge-Kutta methods.

Adaptive step size control.

Explicit Runge-Kutta method with Dormand-Prince coefficients of order 8(5,3) and dense output of order 7.

Shared traits and structures for dopri5 and dop853.

Explicit Runge-Kutta method with Dormand-Prince coefficients of order 5(4) and dense output of order 4.

Explicit Runge-Kutta method of order 4 with fixed step size.

Type Definitions

A dynamically sized column vector.

An owned D-dimensional column vector.

A statically sized D-dimensional column vector.

A stack-allocated, 1-dimensional column vector.

A stack-allocated, 2-dimensional column vector.

A stack-allocated, 3-dimensional column vector.

A stack-allocated, 4-dimensional column vector.

A stack-allocated, 5-dimensional column vector.

A stack-allocated, 6-dimensional column vector.