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 initial_conditions = vec![1f64];
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,
&initial_conditions,
)?;
let y_vec: Vec<f64> = y_vec.into_iter().flatten().collect();
Ok(())
}
struct Test;
impl ODEProblem for Test {
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>
impl<I: ODEIntegrator> BasicODESolver<I>
Trait Implementations§
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> 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<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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