pub struct BackwardEuler {
pub opt_alg: Optimization,
}
Expand description
Fields§
§opt_alg: Optimization
Optimization algorithm for equation solving.
Trait Implementations§
Source§impl Debug for BackwardEuler
impl Debug for BackwardEuler
Source§impl Default for BackwardEuler
impl Default for BackwardEuler
Source§impl<Y, J, U> Implicit<Y, J, U> for BackwardEulerwhere
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>,
impl<Y, J, U> Implicit<Y, J, U> for BackwardEulerwhere
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>,
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>
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. Read more
Source§impl<Y, U> InterpolateSolution<Y, U> for BackwardEulerwhere
Y: Tensor + TensorArray,
for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>,
U: TensorVec<Item = Y>,
impl<Y, U> InterpolateSolution<Y, U> for BackwardEulerwhere
Y: Tensor + TensorArray,
for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>,
U: TensorVec<Item = Y>,
Source§fn interpolate(
&self,
_time: &Vector,
_tp: &Vector,
_yp: &U,
_function: impl Fn(&TensorRank0, &Y) -> Y,
) -> U
fn interpolate( &self, _time: &Vector, _tp: &Vector, _yp: &U, _function: impl Fn(&TensorRank0, &Y) -> Y, ) -> U
Solution interpolation.
Auto Trait Implementations§
impl Freeze for BackwardEuler
impl RefUnwindSafe for BackwardEuler
impl Send for BackwardEuler
impl Sync for BackwardEuler
impl Unpin for BackwardEuler
impl UnwindSafe for BackwardEuler
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more