Class for creating an uniaxial linear elastic material compatible with fiber section.
More...
#include <Elastic1DFiber.hpp>
Class for creating an uniaxial linear elastic material compatible with fiber section.
- See also
- Material.hpp
◆ Elastic1DFiber()
Elastic1DFiber::Elastic1DFiber |
( |
const double |
E, |
|
|
const double |
nu, |
|
|
const double |
rho = 0.0 |
|
) |
| |
◆ ~Elastic1DFiber()
Elastic1DFiber::~Elastic1DFiber |
( |
| ) |
|
◆ CommitState()
void Elastic1DFiber::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> Elastic1DFiber::CopyMaterial |
( |
| ) |
|
|
virtual |
◆ GetBulkModulus()
double Elastic1DFiber::GetBulkModulus |
( |
| ) |
const |
|
virtual |
Access bulk modulus.
- Returns
- The material bulk's (K) modulus.
Implements Material.
◆ GetDamping()
Eigen::MatrixXd Elastic1DFiber::GetDamping |
( |
| ) |
const |
|
virtual |
Returns the material viscous damping.
- Returns
- Vector with the material damping components.
Implements Material.
◆ GetDensity()
double Elastic1DFiber::GetDensity |
( |
| ) |
const |
|
virtual |
◆ GetElasticityModulus()
double Elastic1DFiber::GetElasticityModulus |
( |
| ) |
const |
|
virtual |
◆ GetEnergy()
double Elastic1DFiber::GetEnergy |
( |
| ) |
const |
|
virtual |
Access the material's energy at current strain.
- Returns
- Scalar with the material energy value.
Implements Material.
◆ GetInitialTangentStiffness()
Eigen::MatrixXd Elastic1DFiber::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 Elastic1DFiber::GetPoissonRatio |
( |
| ) |
const |
|
virtual |
◆ GetShearModulus()
double Elastic1DFiber::GetShearModulus |
( |
| ) |
const |
|
virtual |
Returns linear shear modulus.
- Returns
- The material density value.
Implements Material.
◆ GetStrain()
Eigen::VectorXd Elastic1DFiber::GetStrain |
( |
| ) |
const |
|
virtual |
Returns the material strain.
- Returns
- Vector with the material strain components.
- Note
- The strain can be revisited in Elastic1DFiber.
- See also
- Elastic1DFiber::Strain.
Implements Material.
◆ GetStrainRate()
Eigen::VectorXd Elastic1DFiber::GetStrainRate |
( |
| ) |
const |
|
virtual |
Returns the material strain rate.
- Returns
- Vector with the material strain-rate components.
- Note
- The stress-rate can be revisited in Elastic1DFiber.
Implements Material.
◆ GetStress()
Eigen::VectorXd Elastic1DFiber::GetStress |
( |
| ) |
const |
|
virtual |
Returns the material stress.
- Returns
- Vector with the material stress components.
- Note
- The stress can be revisited in Elastic1DFiber.
- See also
- Elastic1DFiber::Stress.
Implements Material.
◆ GetTangentStiffness()
Eigen::MatrixXd Elastic1DFiber::GetTangentStiffness |
( |
| ) |
const |
|
virtual |
Returns the material stiffness.
- Returns
- Matrix with the material tangent stiffness matrix.
- Note
- The stiffness matrix can be revisited in Elastic1DFiber.
- See also
- Elastic1DFiber::TangentStiffness.
Implements Material.
◆ GetTotalStress()
Eigen::VectorXd Elastic1DFiber::GetTotalStress |
( |
| ) |
const |
|
virtual |
Computes the material total stress.
- Returns
- Vector with the material total stress components.
- Note
- The damping can be revisited in Elastic1DFiber.
- See also
- Elastic1DFiber::Stress.
Implements Material.
◆ InitialState()
void Elastic1DFiber::InitialState |
( |
| ) |
|
|
virtual |
Brings the material states to its initial state in the element.
- Note
- This function returns the material states to the beginning.
Implements Material.
◆ ReverseState()
void Elastic1DFiber::ReverseState |
( |
| ) |
|
|
virtual |
Reverse the material states to previous converged state.
- Note
- This function returns the material states to previous converged states.
Implements Material.
◆ UpdateState()
void Elastic1DFiber::UpdateState |
( |
const Eigen::VectorXd |
strain, |
|
|
const unsigned int |
cond = 0 |
|
) |
| |
|
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.
◆ newStrain
Eigen::VectorXd Elastic1DFiber::newStrain |
|
private |
◆ nu
double Elastic1DFiber::nu |
|
private |
◆ oldStrain
Eigen::VectorXd Elastic1DFiber::oldStrain |
|
private |
◆ Rho
double Elastic1DFiber::Rho |
|
private |