peroxide::numerical::ode

Trait ButcherTableau

Source
pub trait ButcherTableau {
    const C: &'static [f64];
    const A: &'static [&'static [f64]];
    const BU: &'static [f64];
    const BE: &'static [f64];

    // Provided methods
    fn tol(&self) -> f64 { ... }
    fn safety_factor(&self) -> f64 { ... }
    fn max_step_size(&self) -> f64 { ... }
    fn min_step_size(&self) -> f64 { ... }
    fn max_step_iter(&self) -> usize { ... }
}
Expand description

Trait for Butcher tableau

C | A
- - -
  | BU (Coefficient for update)
  | BE (Coefficient for estimate error)

§References

  • J. R. Dormand and P. J. Prince, A family of embedded Runge-Kutta formulae, J. Comp. Appl. Math., 6(1), 19-26, 1980.
  • Wikipedia: List of Runge-Kutta methods

Required Associated Constants§

Source

const C: &'static [f64]

Source

const A: &'static [&'static [f64]]

Source

const BU: &'static [f64]

Source

const BE: &'static [f64]

Provided Methods§

Source

fn tol(&self) -> f64

Source

fn safety_factor(&self) -> f64

Source

fn max_step_size(&self) -> f64

Source

fn min_step_size(&self) -> f64

Source

fn max_step_iter(&self) -> usize

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl ButcherTableau for BS23

Source§

const C: &'static [f64] = _

Source§

const A: &'static [&'static [f64]] = _

Source§

const BU: &'static [f64] = _

Source§

const BE: &'static [f64] = _

Source§

impl ButcherTableau for DP45

Source§

const C: &'static [f64] = _

Source§

const A: &'static [&'static [f64]] = _

Source§

const BU: &'static [f64] = _

Source§

const BE: &'static [f64] = _

Source§

impl ButcherTableau for RALS3

Source§

const C: &'static [f64] = _

Source§

const A: &'static [&'static [f64]] = _

Source§

const BU: &'static [f64] = _

Source§

const BE: &'static [f64] = _

Source§

impl ButcherTableau for RALS4

Source§

const C: &'static [f64] = _

Source§

const A: &'static [&'static [f64]] = _

Source§

const BU: &'static [f64] = _

Source§

const BE: &'static [f64] = _

Source§

impl ButcherTableau for RK4

Source§

const C: &'static [f64] = _

Source§

const A: &'static [&'static [f64]] = _

Source§

const BU: &'static [f64] = _

Source§

const BE: &'static [f64] = _

Source§

impl ButcherTableau for RK5

Source§

const C: &'static [f64] = _

Source§

const A: &'static [&'static [f64]] = _

Source§

const BU: &'static [f64] = _

Source§

const BE: &'static [f64] = _

Source§

impl ButcherTableau for RKF45

Source§

const C: &'static [f64] = _

Source§

const A: &'static [&'static [f64]] = _

Source§

const BU: &'static [f64] = _

Source§

const BE: &'static [f64] = _

Source§

impl ButcherTableau for TSIT45

Source§

const C: &'static [f64] = _

Source§

const A: &'static [&'static [f64]] = _

Source§

const BU: &'static [f64] = _

Source§

const BE: &'static [f64] = _