Skip to main content

conspire/domain/fem/block/element/solid/viscoplastic/
mod.rs

1use crate::{
2    math::{Derivative, TensorTupleList},
3    mechanics::{DeformationGradientPlastic, DeformationGradientRatePlastic},
4};
5
6pub type ViscoplasticStateVariables<const G: usize, Y> =
7    TensorTupleList<DeformationGradientPlastic, Y, G>;
8pub type ViscoplasticEvolution<const G: usize, Y> =
9    TensorTupleList<DeformationGradientRatePlastic, Derivative<Y>, G>;