Class for creating a triaxial isotropic linear elastic material in for tri-dimensional elements.
More...
#include <Elastic3DLinear.hpp>
Class for creating a triaxial isotropic linear elastic material in for tri-dimensional elements.
- See also
- Material.hpp
◆ Elastic3DLinear()
Elastic3DLinear::Elastic3DLinear |
( |
const double |
E, |
|
|
const double |
nu, |
|
|
const double |
rho = 0.0 |
|
) |
| |
◆ ~Elastic3DLinear()
Elastic3DLinear::~Elastic3DLinear |
( |
| ) |
|
◆ CommitState()
void Elastic3DLinear::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> Elastic3DLinear::CopyMaterial |
( |
| ) |
|
|
virtual |
◆ GetBulkModulus()
double Elastic3DLinear::GetBulkModulus |
( |
| ) |
const |
|
virtual |
Access bulk modulus.
- Returns
- The material bulk's (K) modulus.
Implements Material.
◆ GetDamping()
Eigen::MatrixXd Elastic3DLinear::GetDamping |
( |
| ) |
const |
|
virtual |
Returns the material viscous damping.
- Returns
- Vector with the material damping components.
Implements Material.
◆ GetDensity()
double Elastic3DLinear::GetDensity |
( |
| ) |
const |
|
virtual |
◆ GetElasticityModulus()
double Elastic3DLinear::GetElasticityModulus |
( |
| ) |
const |
|
virtual |
◆ GetEnergy()
double Elastic3DLinear::GetEnergy |
( |
| ) |
const |
|
virtual |
Access the material's energy at current strain.
- Returns
- Scalar with the material energy value.
Implements Material.
◆ GetInitialTangentStiffness()
Eigen::MatrixXd Elastic3DLinear::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 Elastic3DLinear::GetPoissonRatio |
( |
| ) |
const |
|
virtual |
◆ GetShearModulus()
double Elastic3DLinear::GetShearModulus |
( |
| ) |
const |
|
virtual |
Access shear modulus.
- Returns
- The material shear's (G) modulus.
Implements Material.
◆ GetStrain()
Eigen::VectorXd Elastic3DLinear::GetStrain |
( |
| ) |
const |
|
virtual |
Returns the material strain.
- Returns
- Vector with the material strain components.
- Note
- The strain can be revisited in Elastic3DLinear.
Implements Material.
◆ GetStrainRate()
Eigen::VectorXd Elastic3DLinear::GetStrainRate |
( |
| ) |
const |
|
virtual |
Returns the material strain rate.
- Returns
- Vector with the material strain-rate components.
- Note
- The strain-rate can be revisited in Elastic3DLinear.
Implements Material.
◆ GetStress()
Eigen::VectorXd Elastic3DLinear::GetStress |
( |
| ) |
const |
|
virtual |
Returns the material stress.
- Returns
- Vector with the material stress components.
- Note
- The stress can be revisited in Elastic3DLinear.
Implements Material.
◆ GetTangentStiffness()
Eigen::MatrixXd Elastic3DLinear::GetTangentStiffness |
( |
| ) |
const |
|
virtual |
Returns the material stiffness.
- Returns
- Matrix with the material tangent stiffness matrix.
- Note
- The stiffness matrix can be revisited in Elastic3DLinear.
Implements Material.
◆ GetTotalStress()
Eigen::VectorXd Elastic3DLinear::GetTotalStress |
( |
| ) |
const |
|
virtual |
Computes the material total stress.
- Returns
- Vector with the material total stress components.
Implements Material.
◆ InitialState()
void Elastic3DLinear::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 Elastic3DLinear::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 Elastic3DLinear::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.
double Elastic3DLinear::E |
|
private |
◆ newStrain
Eigen::VectorXd Elastic3DLinear::newStrain |
|
private |
◆ nu
double Elastic3DLinear::nu |
|
private |
◆ Rho
double Elastic3DLinear::Rho |
|
private |
◆ Strain
Eigen::VectorXd Elastic3DLinear::Strain |
|
private |
◆ TangentStiffness
Eigen::MatrixXd Elastic3DLinear::TangentStiffness |
|
private |
Tangent stiffness matrix.