conspire::math::integrate

Type Alias Ode45

Source
pub type Ode45 = DormandPrince;

Aliased Type§

struct Ode45 {
    pub abs_tol: f64,
    pub rel_tol: f64,
    pub dt_beta: f64,
    pub dt_expn: f64,
    pub dt_init: f64,
}

Fields§

§abs_tol: f64

Absolute error tolerance.

§rel_tol: f64

Relative error tolerance.

§dt_beta: f64

Multiplier for adaptive time steps.

§dt_expn: f64

Exponent for adaptive time steps.

§dt_init: f64

Initial relative time step.