pub trait Solid {
// Required methods
fn bulk_modulus(&self) -> &Scalar;
fn shear_modulus(&self) -> &Scalar;
}
Expand description
Required methods for solid constitutive models.
Required Methods§
Sourcefn bulk_modulus(&self) -> &Scalar
fn bulk_modulus(&self) -> &Scalar
Returns the bulk modulus.
Sourcefn shear_modulus(&self) -> &Scalar
fn shear_modulus(&self) -> &Scalar
Returns the shear modulus.