conspire 0.6.0

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Viscous fluid constitutive models.

use crate::math::Scalar;

/// Required methods for viscous fluid constitutive models.
pub trait Viscous {
    /// Returns the bulk viscosity.
    fn bulk_viscosity(&self) -> Scalar;
    /// Returns the shear viscosity.
    fn shear_viscosity(&self) -> Scalar;
}