pub struct Verner8 {
pub abs_tol: TensorRank0,
pub rel_tol: TensorRank0,
pub dt_beta: TensorRank0,
pub dt_expn: TensorRank0,
pub dt_init: TensorRank0,
}
Expand description
Explicit, thirteen-stage, eighth-order, variable-step, Runge-Kutta method.1
\frac{dy}{dt} = f(t, y)
t_{n+1} = t_n + h
k_1 = f(t_n, y_n)
\cdots
h_{n+1} = \beta h \left(\frac{e_\mathrm{tol}}{e_{n+1}}\right)^{1/p}
J.H. Verner, Numer. Algor. 53, 383 (2010). ↩
Fields§
§abs_tol: TensorRank0
Absolute error tolerance.
rel_tol: TensorRank0
Relative error tolerance.
dt_beta: TensorRank0
Multiplier for adaptive time steps.
dt_expn: TensorRank0
Exponent for adaptive time steps.
dt_init: TensorRank0
Initial relative time step.
Trait Implementations§
Source§impl<Y, U> Explicit<Y, U> for Verner8where
Self: InterpolateSolution<Y, U>,
Y: Tensor + TensorArray,
for<'a> &'a Y: Mul<TensorRank0, Output = Y> + Sub<&'a Y, Output = Y>,
U: TensorVec<Item = Y>,
impl<Y, U> Explicit<Y, U> for Verner8where
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§fn integrate(
&self,
function: impl Fn(&TensorRank0, &Y) -> Y,
time: &[TensorRank0],
initial_condition: Y,
) -> Result<(Vector, U), IntegrationError>
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. Read more
Source§impl<Y, U> InterpolateSolution<Y, U> for Verner8where
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 Verner8where
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 Verner8
impl RefUnwindSafe for Verner8
impl Send for Verner8
impl Sync for Verner8
impl Unpin for Verner8
impl UnwindSafe for Verner8
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