conspire 0.7.7

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
use crate::{
    math::{Derivative, TensorTupleList},
    mechanics::{DeformationGradientPlastic, DeformationGradientRatePlastic},
};

pub type ViscoplasticStateVariables<const G: usize, Y> =
    TensorTupleList<DeformationGradientPlastic, Y, G>;
pub type ViscoplasticEvolution<const G: usize, Y> =
    TensorTupleList<DeformationGradientRatePlastic, Derivative<Y>, G>;