[][src]Struct salva2d::solver::XSPHViscosity

pub struct XSPHViscosity<N: RealField> {
    pub boundary_viscosity_coefficient: N,
    pub fluid_viscosity_coefficient: N,
}

Implements the viscosity model introduced with the XSPH method.

Fields

boundary_viscosity_coefficient: N

The viscosity coefficient when interacting with boundaries.

fluid_viscosity_coefficient: N

The fluid viscosity coefficient.

Methods

impl<N: RealField> XSPHViscosity<N>[src]

pub fn new(
    fluid_viscosity_coefficient: N,
    boundary_viscosity_coefficient: N
) -> Self
[src]

Initializes the XSPH viscosity with the given viscosity coefficients.

Trait Implementations

impl<N: Clone + RealField> Clone for XSPHViscosity<N>[src]

impl<N: RealField> NonPressureForce<N> for XSPHViscosity<N>[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for XSPHViscosity<N> where
    N: RefUnwindSafe

impl<N> Send for XSPHViscosity<N>

impl<N> Sync for XSPHViscosity<N>

impl<N> Unpin for XSPHViscosity<N> where
    N: Unpin

impl<N> UnwindSafe for XSPHViscosity<N> where
    N: UnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,