conspire::math::integrate

Trait Explicit

Source
pub trait Explicit<Y, U>: OdeSolver<Y, U>
where Self: InterpolateSolution<Y, U>, Y: Tensor + TensorArray, for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>, U: TensorVec<Item = Y>,
{ // Required method fn integrate( &self, function: impl Fn(&TensorRank0, &Y) -> Y, time: &[TensorRank0], initial_condition: Y, ) -> Result<(Vector, U), IntegrationError>; }
Expand description

Base trait for explicit ordinary differential equation solvers.

Required Methods§

Source

fn integrate( &self, function: impl Fn(&TensorRank0, &Y) -> Y, time: &[TensorRank0], initial_condition: Y, ) -> Result<(Vector, U), IntegrationError>

Solves an initial value problem by explicitly integrating a system of ordinary differential equations.

\frac{dy}{dt} = f(t, y),\quad y(t_0) = y_0

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<Y, U> Explicit<Y, U> for BogackiShampine
where Self: InterpolateSolution<Y, U>, Y: Tensor + TensorArray, for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>, U: TensorVec<Item = Y>,

Source§

impl<Y, U> Explicit<Y, U> for DormandPrince
where Self: InterpolateSolution<Y, U>, Y: Tensor + TensorArray, for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>, U: TensorVec<Item = Y>,

Source§

impl<Y, U> Explicit<Y, U> for Verner8
where Self: InterpolateSolution<Y, U>, Y: Tensor + TensorArray, for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>, U: TensorVec<Item = Y>,

Source§

impl<Y, U> Explicit<Y, U> for Verner9
where Self: InterpolateSolution<Y, U>, Y: Tensor + TensorArray, for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>, U: TensorVec<Item = Y>,