Struct sir_ddft::SIRParameters[][src]

pub struct SIRParameters {
    pub infection_parameter: f64,
    pub recovery_rate: f64,
}

Parameters for the most simplistic SIR model (ODE)

Fields

infection_parameter: f64

Infection parameter

Note: In the SIR model this parameter is the effective contact rate (ceff) (i.e. has the dimension of an inverse time), while in the 1D and 2D models this parameter (c) has a dimension of length per time (1D) or area per time (2D) respectively.

recovery_rate: f64

Recovery rate

Implementations

impl SIRParameters[src]

pub fn new(infection_parameter: f64, recovery_rate: f64) -> SIRParameters[src]

Create a new set of rate parameters for SIR models

Trait Implementations

impl Clone for SIRParameters[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.