[−][src]Crate ode_solvers
ODEs Solvers
ode-solvers is a collection of numerical methods to solve ordinary differential equations (ODEs).
Re-exports
pub use dopri5::Dopri5; |
pub use dop853::Dop853; |
pub use dop_shared::System; |
Modules
| butcher_tableau | Butcher tableaux containing the coefficients of the Runge-Kutta methods. |
| 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. |
Type Definitions
| 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. |
| VectorN | A statically sized D-dimensional column vector. |