catlog::simulate::ode

Trait ODESystem

Source
pub trait ODESystem {
    // Required method
    fn vector_field(&self, dx: &mut DVector<f32>, x: &DVector<f32>, t: f32);

    // Provided method
    fn eval_vector_field(&self, x: &DVector<f32>, t: f32) -> DVector<f32> { ... }
}
Expand description

A system of ordinary differential equations (ODEs).

An ODE system is anything that can compute a vector field.

Required Methods§

Source

fn vector_field(&self, dx: &mut DVector<f32>, x: &DVector<f32>, t: f32)

Compute the vector field at the given time and state in place.

Provided Methods§

Source

fn eval_vector_field(&self, x: &DVector<f32>, t: f32) -> DVector<f32>

Compute and return the vector field at the given time and state.

Implementors§

Source§

impl ODESystem for LotkaVolterraSystem

Source§

impl<Exp> ODESystem for NumericalPolynomialSystem<Exp>
where Exp: Clone + Ord, f32: Pow<Exp, Output = f32>,