Struct peroxide::numerical::ode::BasicODESolver

source ·
pub struct BasicODESolver<I: ODEIntegrator> { /* private fields */ }
Expand description

A basic ODE solver using a specified integrator.

§Example

use peroxide::fuga::*;

fn main() -> Result<(), Box<dyn Error>> {
    let rkf = RKF45::new(1e-4, 0.9, 1e-6, 1e-1, 100);
    let basic_ode_solver = BasicODESolver::new(rkf);
    let (t_vec, y_vec) = basic_ode_solver.solve(
        &Test,
        (0f64, 10f64),
        0.01,
    )?;
    let y_vec: Vec<f64> = y_vec.into_iter().flatten().collect();

    Ok(())
}

struct Test;

impl ODEProblem for Test {
    fn initial_conditions(&self) -> Vec<f64> {
        vec![1f64]
    }

    fn rhs(&self, t: f64, y: &[f64], dy: &mut [f64]) -> anyhow::Result<()> {
        dy[0] = (5f64 * t.powi(2) - y[0]) / (t + y[0]).exp();
        Ok(())
    }
}

Implementations§

source§

impl<I: ODEIntegrator> BasicODESolver<I>

source

pub fn new(integrator: I) -> Self

Trait Implementations§

source§

impl<I: ODEIntegrator> ODESolver for BasicODESolver<I>

source§

fn solve<P: ODEProblem>( &self, problem: &P, t_span: (f64, f64), dt: f64, ) -> Result<(Vec<f64>, Vec<Vec<f64>>)>

Auto Trait Implementations§

§

impl<I> Freeze for BasicODESolver<I>
where I: Freeze,

§

impl<I> RefUnwindSafe for BasicODESolver<I>
where I: RefUnwindSafe,

§

impl<I> Send for BasicODESolver<I>
where I: Send,

§

impl<I> Sync for BasicODESolver<I>
where I: Sync,

§

impl<I> Unpin for BasicODESolver<I>
where I: Unpin,

§

impl<I> UnwindSafe for BasicODESolver<I>
where I: 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> 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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V