#[cfg(test)]
pub mod test;
use crate::{
defeat_message,
math::{
Rank2, Tensor, TensorRank0, TensorRank0List, TensorRank1, TensorRank1List,
TensorRank1List2D, TensorRank2, TensorRank2List, TensorRank2List2D, TensorRank4,
TensorRank4List,
},
};
use std::fmt;
pub enum DeformationError {
InvalidJacobian(Scalar, DeformationGradient),
}
impl fmt::Debug for DeformationError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let error = match self {
Self::InvalidJacobian(jacobian, deformation_gradient) => {
format!(
"\x1b[1;91mInvalid Jacobian: {:.6e}.\x1b[0;91m\n\
From deformation gradient: {}.",
jacobian, deformation_gradient
)
}
};
write!(f, "\n{}\n\x1b[0;2;31m{}\x1b[0m\n", error, defeat_message())
}
}
impl fmt::Display for DeformationError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let error = match self {
Self::InvalidJacobian(jacobian, deformation_gradient) => {
format!(
"\x1b[1;91mInvalid Jacobian: {:.6e}.\x1b[0;91m\n\
From deformation gradient: {}.",
jacobian, deformation_gradient
)
}
};
write!(f, "\n{}\n\x1b[0;2;31m{}\x1b[0m\n", error, defeat_message())
}
}
pub trait Deformation {
fn jacobian(&self) -> Result<Scalar, DeformationError>;
fn left_cauchy_green(&self) -> LeftCauchyGreenDeformation;
fn right_cauchy_green(&self) -> RightCauchyGreenDeformation;
}
impl Deformation for DeformationGradient {
fn jacobian(&self) -> Result<Scalar, DeformationError> {
let jacobian = self.determinant();
if jacobian > 0.0 {
Ok(jacobian)
} else {
Err(DeformationError::InvalidJacobian(jacobian, self.clone()))
}
}
fn left_cauchy_green(&self) -> LeftCauchyGreenDeformation {
self.iter()
.map(|deformation_gradient_i| {
self.iter()
.map(|deformation_gradient_j| deformation_gradient_i * deformation_gradient_j)
.collect()
})
.collect()
}
fn right_cauchy_green(&self) -> RightCauchyGreenDeformation {
let deformation_gradient_transpose = self.transpose();
deformation_gradient_transpose
.iter()
.map(|deformation_gradient_transpose_i| {
deformation_gradient_transpose
.iter()
.map(|deformation_gradient_transpose_j| {
deformation_gradient_transpose_i * deformation_gradient_transpose_j
})
.collect()
})
.collect()
}
}
pub type CauchyStress = TensorRank2<3, 1, 1>;
pub type CauchyStresses<const W: usize> = TensorRank2List<3, 1, 1, W>;
pub type CauchyTangentStiffness = TensorRank4<3, 1, 1, 1, 0>;
pub type CauchyRateTangentStiffness = TensorRank4<3, 1, 1, 1, 0>;
pub type Coordinates<const I: usize, const W: usize> = TensorRank1List<3, I, W>;
pub type CurrentCoordinate = TensorRank1<3, 1>;
pub type CurrentCoordinates<const W: usize> = TensorRank1List<3, 1, W>;
pub type CurrentVelocity = TensorRank1<3, 1>;
pub type DeformationGradient = TensorRank2<3, 1, 0>;
pub type DeformationGradientElastic = TensorRank2<3, 1, 2>;
pub type DeformationGradientGeneral<const I: usize, const J: usize> = TensorRank2<3, I, J>;
pub type DeformationGradientPlastic = TensorRank2<3, 2, 0>;
pub type DeformationGradientRate = TensorRank2<3, 1, 0>;
pub type DeformationGradientRatePlastic = TensorRank2<3, 2, 0>;
pub type DeformationGradients<const W: usize> = TensorRank2List<3, 1, 0, W>;
pub type DeformationGradientRates<const W: usize> = TensorRank2List<3, 1, 0, W>;
pub type Displacement = TensorRank1<3, 1>;
pub type FirstPiolaKirchhoffStress = TensorRank2<3, 1, 0>;
pub type FirstPiolaKirchhoffStresses<const W: usize> = TensorRank2List<3, 1, 0, W>;
pub type FirstPiolaKirchhoffTangentStiffness = TensorRank4<3, 1, 0, 1, 0>;
pub type FirstPiolaKirchhoffTangentStiffnesses<const W: usize> = TensorRank4List<3, 1, 0, 1, 0, W>;
pub type FirstPiolaKirchhoffRateTangentStiffness = TensorRank4<3, 1, 0, 1, 0>;
pub type FirstPiolaKirchhoffRateTangentStiffnesses<const W: usize> =
TensorRank4List<3, 1, 0, 1, 0, W>;
pub type Force = TensorRank1<3, 1>;
pub type Forces<const W: usize> = TensorRank1List<3, 1, W>;
pub type FrameSpin = TensorRank2<3, 1, 1>;
pub type HeatFlux = TensorRank1<3, 1>;
pub type LeftCauchyGreenDeformation = TensorRank2<3, 1, 1>;
pub type MandelStress = TensorRank2<3, 2, 2>;
pub type Normal = TensorRank1<3, 1>;
pub type ReferenceCoordinate = TensorRank1<3, 0>;
pub type ReferenceCoordinates<const W: usize> = TensorRank1List<3, 0, W>;
pub type RightCauchyGreenDeformation = TensorRank2<3, 0, 0>;
pub type RotationCurrentConfiguration = TensorRank2<3, 1, 1>;
pub type RotationRateCurrentConfiguration = TensorRank2<3, 1, 1>;
pub type RotationReferenceConfiguration = TensorRank2<3, 0, 0>;
pub type Scalar = TensorRank0;
pub type Scalars<const W: usize> = TensorRank0List<W>;
pub type SecondPiolaKirchhoffStress = TensorRank2<3, 0, 0>;
pub type SecondPiolaKirchhoffTangentStiffness = TensorRank4<3, 0, 0, 1, 0>;
pub type SecondPiolaKirchhoffRateTangentStiffness = TensorRank4<3, 0, 0, 1, 0>;
pub type Stiffness = TensorRank2<3, 1, 1>;
pub type Stiffnesses<const W: usize> = TensorRank2List2D<3, 1, 1, W, W>;
pub type StretchingRate = TensorRank2<3, 1, 1>;
pub type StretchingRatePlastic = TensorRank2<3, 2, 2>;
pub type TemperatureGradient = TensorRank1<3, 1>;
pub type Traction = TensorRank1<3, 1>;
pub type Vector<const I: usize> = TensorRank1<3, I>;
pub type Vectors<const I: usize, const W: usize> = TensorRank1List<3, I, W>;
pub type Vectors2D<const I: usize, const W: usize, const X: usize> = TensorRank1List2D<3, I, W, X>;