catlog::simulate::ode

Struct ODEProblem

Source
pub struct ODEProblem<Sys> { /* private fields */ }
Expand description

An ODE problem ready to be solved.

An ODE problem comprises an ODE system plus the extra information needed to solve the system, namely the initial values and the time span.

Implementations§

Source§

impl<Sys> ODEProblem<Sys>

Source

pub fn new(system: Sys, initial_values: DVector<f32>) -> Self

Creates a new ODE problem.

Source

pub fn start_time(self, t: f32) -> Self

Sets the start time for the problem.

Source

pub fn end_time(self, t: f32) -> Self

Sets the end time for the problem.

Source

pub fn time_span(self, tspan: (f32, f32)) -> Self

Sets the time span (start and end time) for the problem.

Source§

impl<Sys> ODEProblem<Sys>
where Sys: ODESystem,

Source

pub fn solve_rk4( &self, step_size: f32, ) -> Result<SolverResult<f32, DVector<f32>>, IntegrationError>

Solves the ODE system using the Runge-Kutta method.

Returns the solver results if successful and an integration error otherwise.

Source

pub fn solve_dopri5( &self, output_step_size: f32, ) -> Result<SolverResult<f32, DVector<f32>>, IntegrationError>

Solves the ODE system using the Dormand-Prince method.

A variant of Runge-Kutta with adaptive step size control and automatic selection of initial step size.

Trait Implementations§

Source§

impl<Sys: Clone> Clone for ODEProblem<Sys>

Source§

fn clone(&self) -> ODEProblem<Sys>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Sys: Debug> Debug for ODEProblem<Sys>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Sys: PartialEq> PartialEq for ODEProblem<Sys>

Source§

fn eq(&self, other: &ODEProblem<Sys>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<Sys> System<f32, Matrix<f32, Dyn, Const<1>, VecStorage<f32, Dyn, Const<1>>>> for &ODEProblem<Sys>
where Sys: ODESystem,

Source§

fn system(&self, x: f32, y: &DVector<f32>, dy: &mut DVector<f32>)

System of ordinary differential equations.
§

fn solout(&mut self, _x: T, _y: &V, _dy: &V) -> bool

Stop function called at every successful integration step. The integration is stopped when this function returns true.
Source§

impl<Sys> StructuralPartialEq for ODEProblem<Sys>

Auto Trait Implementations§

§

impl<Sys> Freeze for ODEProblem<Sys>
where Sys: Freeze,

§

impl<Sys> RefUnwindSafe for ODEProblem<Sys>
where Sys: RefUnwindSafe,

§

impl<Sys> Send for ODEProblem<Sys>
where Sys: Send,

§

impl<Sys> Sync for ODEProblem<Sys>
where Sys: Sync,

§

impl<Sys> Unpin for ODEProblem<Sys>
where Sys: Unpin,

§

impl<Sys> UnwindSafe for ODEProblem<Sys>
where Sys: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,