[][src]Struct shallow_water::parameters::Numerical

pub struct Numerical {
    pub grid_resolution: usize,
    pub vertical_layers: usize,
    pub time_step: f64,
    pub duration: f64,
    pub save_interval: f64,
    pub max_pressure_difference: f64,
    pub strip_width: f64,
    pub a2: f64,
    pub a3: f64,
}

Fields

grid_resolution: usize

Inversion grid resolution in both x and y

vertical_layers: usize

Number of vertical layers

time_step: f64

Simulation time step size

duration: f64

Total duration of the simulation

save_interval: f64

Interval of saving grid data

max_pressure_difference: f64

Maximum pressure difference on convergence

strip_width: f64

Strip width

a2: f64

Value of A2 in displacement equation

a3: f64

Value of A3 in displacement equation

Trait Implementations

impl Debug for Numerical[src]

impl Default for Numerical[src]

impl<'de> Deserialize<'de> for Numerical[src]

impl PartialEq<Numerical> for Numerical[src]

impl StructuralPartialEq for Numerical[src]

Auto Trait Implementations

impl RefUnwindSafe for Numerical

impl Send for Numerical

impl Sync for Numerical

impl Unpin for Numerical

impl UnwindSafe for Numerical

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.