pub struct Dopri5<T, V, F>where
T: FloatNumber,
F: System<T, V>,{ /* private fields */ }
Expand description
Structure containing the parameters for the numerical integration.
Implementations§
Source§impl<T, D: Dim, F> Dopri5<T, OVector<T, D>, F>where
f64: From<T>,
T: FloatNumber,
F: System<T, OVector<T, D>>,
OVector<T, D>: Mul<T, Output = OVector<T, D>>,
DefaultAllocator: Allocator<D>,
impl<T, D: Dim, F> Dopri5<T, OVector<T, D>, F>where
f64: From<T>,
T: FloatNumber,
F: System<T, OVector<T, D>>,
OVector<T, D>: Mul<T, Output = OVector<T, D>>,
DefaultAllocator: Allocator<D>,
Sourcepub fn new(
f: F,
x: T,
x_end: T,
dx: T,
y: OVector<T, D>,
rtol: T,
atol: T,
) -> Self
pub fn new( f: F, x: T, x_end: T, dx: T, y: OVector<T, D>, rtol: T, atol: T, ) -> Self
Default initializer for the structure
§Arguments
f
- Structure implementing theSystem
traitx
- Initial value of the independent variable (usually time)x_end
- Final value of the independent variabledx
- Increment in the dense output. This argument has no effect if the output type is Sparsey
- Initial value of the dependent variable(s)rtol
- Relative tolerance used in the computation of the adaptive step sizeatol
- Absolute tolerance used in the computation of the adaptive step size
Sourcepub fn from_param(
f: F,
x: T,
x_end: T,
dx: T,
y: OVector<T, D>,
rtol: T,
atol: T,
safety_factor: T,
beta: T,
fac_min: T,
fac_max: T,
h_max: T,
h: T,
n_max: u32,
n_stiff: u32,
out_type: OutputType,
) -> Self
pub fn from_param( f: F, x: T, x_end: T, dx: T, y: OVector<T, D>, rtol: T, atol: T, safety_factor: T, beta: T, fac_min: T, fac_max: T, h_max: T, h: T, n_max: u32, n_stiff: u32, out_type: OutputType, ) -> Self
Advanced initializer for the structure.
§Arguments
f
- Structure implementing theSystem
traitx
- Initial value of the independent variable (usually time)x_end
- Final value of the independent variabledx
- Increment in the dense output. This argument has no effect if the output type is Sparsey
- Initial value of the dependent variable(s)rtol
- Relative tolerance used in the computation of the adaptive step sizeatol
- Absolute tolerance used in the computation of the adaptive step sizesafety_factor
- Safety factor used in the computation of the adaptive step sizebeta
- Value of the beta coefficient of the PI controller. Default is 0.04fac_min
- Minimum factor between two successive steps. Default is 0.2fac_max
- Maximum factor between two successive steps. Default is 10.0h_max
- Maximum step size. Default isx_end-x
h
- Initial value of the step size. If h = 0.0, the initial value of h is computed automaticallyn_max
- Maximum number of iterations. Default is 100000n_stiff
- Stiffness is tested when the number of iterations is a multiple of n_stiff. Default is 1000out_type
- Type of the output. Must be a variant of the OutputType enum. Default is Dense
Sourcepub fn integrate_with_continuous_output_model(
&mut self,
continuous_output: &mut ContinuousOutputModel<T, OVector<T, D>>,
) -> Result<Stats, IntegrationError>
pub fn integrate_with_continuous_output_model( &mut self, continuous_output: &mut ContinuousOutputModel<T, OVector<T, D>>, ) -> Result<Stats, IntegrationError>
Integrates the system and builds a continuous output model.
Sourcepub fn integrate(&mut self) -> Result<Stats, IntegrationError>
pub fn integrate(&mut self) -> Result<Stats, IntegrationError>
Integrates the system.
Sourcepub fn results(&self) -> &SolverResult<T, OVector<T, D>>
pub fn results(&self) -> &SolverResult<T, OVector<T, D>>
Getter for the results type, a pair of independent and dependent variables
Trait Implementations§
Auto Trait Implementations§
impl<T, V, F> Freeze for Dopri5<T, V, F>
impl<T, V, F> RefUnwindSafe for Dopri5<T, V, F>
impl<T, V, F> Send for Dopri5<T, V, F>
impl<T, V, F> Sync for Dopri5<T, V, F>
impl<T, V, F> Unpin for Dopri5<T, V, F>
impl<T, V, F> UnwindSafe for Dopri5<T, V, F>
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
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.