[][src]Struct salva3d::solver::ArtificialViscosity

pub struct ArtificialViscosity<N: RealField> {
    pub alpha: N,
    pub beta: N,
    pub speed_of_sound: N,
    pub fluid_viscosity_coefficient: N,
    pub boundary_viscosity_coefficient: N,
}

Implements artificial viscosity.

Fields

alpha: N

The coefficient of the linear part of the viscosity.

beta: N

The coefficient of the quadratic part of the viscosity.

speed_of_sound: N

The speed of sound.

fluid_viscosity_coefficient: N

The fluid viscosity coefficient.

boundary_viscosity_coefficient: N

The viscosity coefficient when interacting with boundaries.

Methods

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

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

Initializes the artificial viscosity with the given viscosity coefficients.

Trait Implementations

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

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

Auto Trait Implementations

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

impl<N> Send for ArtificialViscosity<N>

impl<N> Sync for ArtificialViscosity<N>

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

impl<N> UnwindSafe for ArtificialViscosity<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>,