Struct sir_ddft::SIRStateSpatial1D[][src]

pub struct SIRStateSpatial1D {
    pub S: Vec<f64>,
    pub I: Vec<f64>,
    pub R: Vec<f64>,
    pub grid: Grid1D,
}

State of spatially resolved SIR models in one dimension (SIR PDEs)

Fields

S: Vec<f64>

Susceptible population for all grid points

I: Vec<f64>

Infected population for all grid points

R: Vec<f64>

Recovered population for all grid points

grid: Grid1D

Spatial grid

Implementations

impl SIRStateSpatial1D[src]

pub fn new<F>(grid: Grid1D, initfunc: F) -> Self where
    F: Fn(f64) -> (f64, f64, f64)
[src]

Create a new state for a spatial SIR model in 2D.

The state will be initialized on the given grid by calling initfunc(x) at each grid point (x).

Trait Implementations

impl Clone for SIRStateSpatial1D[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.