conspire/constitutive/fluid/plastic/
mod.rs

1//! Plastic constitutive models.
2
3use crate::math::Scalar;
4use std::fmt::Debug;
5
6/// Required methods for plastic constitutive models.
7pub trait Plastic
8where
9    Self: Clone + Debug,
10{
11    /// Returns the initial yield stress.
12    fn initial_yield_stress(&self) -> Scalar;
13    /// Returns the isotropic hardening slope.
14    fn hardening_slope(&self) -> Scalar;
15}