Class for creating an uniaxial viscous material in for one-dimensional elements.
More...
#include <Viscous1DLinear.hpp>
Class for creating an uniaxial viscous material in for one-dimensional elements.
- See also
- Material.hpp
◆ Viscous1DLinear()
Viscous1DLinear::Viscous1DLinear |
( |
const double |
eta | ) |
|
◆ ~Viscous1DLinear()
Viscous1DLinear::~Viscous1DLinear |
( |
| ) |
|
◆ CommitState()
void Viscous1DLinear::CommitState |
( |
| ) |
|
|
virtual |
Perform converged material state update.
- Note
- This function sets the trail stress and strain as converged.
Implements Material.
◆ CopyMaterial()
std::unique_ptr<Material> Viscous1DLinear::CopyMaterial |
( |
| ) |
|
|
virtual |
◆ GetBulkModulus()
double Viscous1DLinear::GetBulkModulus |
( |
| ) |
const |
|
virtual |
Access bulk modulus.
- Returns
- The material bulk's (K) modulus.
Implements Material.
◆ GetDamping()
Eigen::MatrixXd Viscous1DLinear::GetDamping |
( |
| ) |
const |
|
virtual |
◆ GetDensity()
double Viscous1DLinear::GetDensity |
( |
| ) |
const |
|
virtual |
Access material density.
- Returns
- The material density value.
Implements Material.
◆ GetElasticityModulus()
double Viscous1DLinear::GetElasticityModulus |
( |
| ) |
const |
|
virtual |
Access modulus of elasticity.
- Returns
- The material Elasticity's (E) modulus.
Implements Material.
◆ GetEnergy()
double Viscous1DLinear::GetEnergy |
( |
| ) |
const |
|
virtual |
Access the material's energy at current strain.
- Returns
- Scalar with the material energy value.
Implements Material.
◆ GetInitialTangentStiffness()
Eigen::MatrixXd Viscous1DLinear::GetInitialTangentStiffness |
( |
| ) |
const |
|
virtual |
Returns the initial material stiffness.
- Returns
- Matrix with the initial material tangent stiffness matrix.
- Note
- The initial tangent stiffness matrix is computed when the strain vector is zero.
Implements Material.
◆ GetPoissonRatio()
double Viscous1DLinear::GetPoissonRatio |
( |
| ) |
const |
|
virtual |
Returns the Poisson's ratio.
- Returns
- The material poisson's ratio.
Implements Material.
◆ GetShearModulus()
double Viscous1DLinear::GetShearModulus |
( |
| ) |
const |
|
virtual |
Access shear modulus.
- Returns
- The material shear's (G) modulus.
Implements Material.
◆ GetStrain()
Eigen::VectorXd Viscous1DLinear::GetStrain |
( |
| ) |
const |
|
virtual |
Returns the material strain.
- Returns
- Vector with the material strain components.
- Note
- The strain can be revisited in Viscous1DLinear.
Implements Material.
◆ GetStrainRate()
Eigen::VectorXd Viscous1DLinear::GetStrainRate |
( |
| ) |
const |
|
virtual |
◆ GetStress()
Eigen::VectorXd Viscous1DLinear::GetStress |
( |
| ) |
const |
|
virtual |
Returns the material stress.
- Returns
- Vector with the material stress components.
- Note
- The stress can be revisited in Viscous1DLinear.
Implements Material.
◆ GetTangentStiffness()
Eigen::MatrixXd Viscous1DLinear::GetTangentStiffness |
( |
| ) |
const |
|
virtual |
Returns the material stiffness.
- Returns
- Matrix with the material tangent stiffness matrix.
- Note
- The stiffness matrix can be revisited in Viscous1DLinear.
Implements Material.
◆ GetTotalStress()
Eigen::VectorXd Viscous1DLinear::GetTotalStress |
( |
| ) |
const |
|
virtual |
◆ InitialState()
void Viscous1DLinear::InitialState |
( |
| ) |
|
|
virtual |
Brings the material states to its initial state in the element.
- Note
- This funtion returns the material states to the beginning.
Implements Material.
◆ ReverseState()
void Viscous1DLinear::ReverseState |
( |
| ) |
|
|
virtual |
Reverse the material states to previous converged state.
- Note
- This funtion returns the material states to previous converged states.
Implements Material.
◆ UpdateState()
void Viscous1DLinear::UpdateState |
( |
const Eigen::VectorXd |
strain, |
|
|
const unsigned int |
cond |
|
) |
| |
|
virtual |
Update the material state for this iteration.
- Parameters
-
strain | Vector with the strain components at this Gauss-point. |
cond | If the the elastic/plastic material components will be updated. |
- Note
- This function computes the strain and tanget stiffness matrix once the trial strain converged.
Implements Material.
◆ Damping
Eigen::MatrixXd Viscous1DLinear::Damping |
|
private |
The material damping matrix.
◆ eta
double Viscous1DLinear::eta |
|
private |
◆ StrainRate
Eigen::VectorXd Viscous1DLinear::StrainRate |
|
private |
The material strain-rate vector.
◆ Stress
Eigen::VectorXd Viscous1DLinear::Stress |
|
private |
The material stress vector.