[][src]Struct shallow_water::parameters::Physical

pub struct Physical {
    pub coriolis_frequency: f64,
    pub gravity_wave_speed: f64,
    pub mean_fluid_depth: f64,
    pub damping: f64,
    pub nnu: f64,
}

Fields

coriolis_frequency: f64

Constant Coriolis frequency f

gravity_wave_speed: f64

Short-scale gravity wave speed c

mean_fluid_depth: f64

Mean fluid depth (conserved by mass conservation)

damping: f64

This times f is the damping rate on wavenumber grid_resolution/2

nnu: f64

Viscosity constant

Trait Implementations

impl Debug for Physical[src]

impl Default for Physical[src]

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

impl PartialEq<Physical> for Physical[src]

impl StructuralPartialEq for Physical[src]

Auto Trait Implementations

impl RefUnwindSafe for Physical

impl Send for Physical

impl Sync for Physical

impl Unpin for Physical

impl UnwindSafe for Physical

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.