conspire::math::integrate

Trait Implicit

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

Base trait for implicit ordinary differential equation solvers.

Required Methods§

Source

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

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

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

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