32 #ifndef _LIN2DTRUSS3_HPP_ 33 #define _LIN2DTRUSS3_HPP_ 37 #include <Eigen/Dense> 64 lin2DTruss3(
const std::vector<unsigned int> nodes, std::unique_ptr<Material> &material,
const double area,
const std::string quadrature=
"GAUSS",
const unsigned int nGauss=3);
89 void SetDomain(std::map<
unsigned int, std::shared_ptr<Node> > &nodes);
94 void SetDamping(
const std::shared_ptr<Damping> &damping);
120 Eigen::MatrixXd
GetStrainAt(
double x3,
double x2)
const;
127 Eigen::MatrixXd
GetStressAt(
double x3,
double x2)
const;
189 Eigen::VectorXd
ComputeBodyForces(
const std::shared_ptr<Load> &body,
unsigned int k=0);
234 Eigen::VectorXd
ComputeStrain(
const Eigen::MatrixXd &Bij)
const;
Eigen::MatrixXd GetStrain() const
Gets the material/section (generalised) strain.
double Lo
Length of the element.
Definition: lin2DTruss3.hpp:201
std::vector< std::unique_ptr< Material > > theMaterial
The Element's material.
Definition: lin2DTruss3.hpp:213
This file contains the "Load" class declarations, which defines a load that can act in a node or an e...
Eigen::MatrixXd GetStress() const
Gets the material/section (generalised) stress.
lin2DTruss3(const std::vector< unsigned int > nodes, std::unique_ptr< Material > &material, const double area, const std::string quadrature="GAUSS", const unsigned int nGauss=3)
Creates a lin2DTruss3 in a finite element Mesh.
std::unique_ptr< QuadratureRule > QuadraturePoints
Coordinate of Gauss points.
Definition: lin2DTruss3.hpp:216
Eigen::MatrixXd ComputeTransformationAxes() const
Compute/update the tranformation matrix from local to global axis.
Eigen::VectorXd ComputeInternalForces()
Compute the internal (elastic) forces acting on the element.
This file contains the abstract "Material object" declarations, which computes the strain...
std::shared_ptr< Damping > theDamping
The Damping model.
Definition: lin2DTruss3.hpp:207
Eigen::MatrixXd ComputeLocalAxes() const
Compute/update the local axis-1 of the element.
void UpdateState()
Update the material states in the element.
void InitialState()
Brings the material/section state to its initial state in this element.
Eigen::MatrixXd ComputeMassMatrix()
Compute the lumped/consistent mass matrix of the element.
Eigen::MatrixXd ComputeStrainDisplacementMatrix(const double ri) const
Evaluates the strain-displacement matrix at a given Gauss point.
void ReverseState()
Reverse the material/section states to previous converged state in this element.
Eigen::MatrixXd ComputeShapeFunctionMatrix(const double ri) const
Evaluates the shape function matrix at a given Gauss point.
Eigen::VectorXd GetVTKResponse(std::string response) const
Gets the element internal response in VTK format for Paraview display.
void SetDamping(const std::shared_ptr< Damping > &damping)
Sets the damping model.
Eigen::VectorXd ComputeInternalDynamicForces()
Compute the elastic, inertial, and viscous forces acting on the element.
Eigen::VectorXd ComputeStrainRate(const Eigen::MatrixXd &Bij) const
Update strain rate in the element.
Eigen::MatrixXd ComputeDampingMatrix()
Compute the damping matrix of the element using gauss-integration.
Eigen::MatrixXd GetStrainRate() const
Gets the material/section (generalised) strain-rate.
Eigen::VectorXd ComputeStrain(const Eigen::MatrixXd &Bij) const
Update strain in the element.
void CommitState()
Save the material states in the element.
std::vector< std::shared_ptr< Node > > theNodes
The Element's Nodes.
Definition: lin2DTruss3.hpp:210
Eigen::VectorXd ComputeSurfaceForces(const std::shared_ptr< Load > &surface, unsigned int face)
Compute the surface forces acting on the element.
Virtual class for creating an element in a mesh.
Definition: Element.hpp:51
Eigen::VectorXd ComputeDomainReductionForces(const std::shared_ptr< Load > &drm, unsigned int k)
Compute the domain reduction forces acting on the element.
std::vector< unsigned int > GetTotalDegreeOfFreedom() const
Gets the list of total-degree of freedom of this Element.
Eigen::MatrixXd ComputePMLMatrix()
Compute the PML history matrix using gauss-integration.
This file contains the "Node object" declarations, which is stores the coordinates, state variables, degrees-of-freedom, and total-degree of freedom lists of a node in a finite element mesh.
Eigen::MatrixXd ComputeInitialStiffnessMatrix() const
Compute the initial stiffness matrix of the element.
This file contains the "Damping object" declarations to update damping matrix to account for Caughey-...
double ComputeEnergy()
Computes the element energy for a given deformation.
Eigen::VectorXd ComputeBodyForces(const std::shared_ptr< Load > &body, unsigned int k=0)
Compute the body forces acting on the element.
double A
Area of cross-section.
Definition: lin2DTruss3.hpp:204
Class for creating a 2D linearized three-node truss element in a mesh.
Definition: lin2DTruss3.hpp:53
Eigen::MatrixXd GetStressAt(double x3, double x2) const
Gets the material stress in section at coordinate (x3,x2).
~lin2DTruss3()
Destroys this lin2DTruss3 object.
void SetDomain(std::map< unsigned int, std::shared_ptr< Node > > &nodes)
Sets the finite element dependance among objects.
double ComputeLength() const
Compute the current length of the element.
Eigen::MatrixXd GetStrainAt(double x3, double x2) const
Gets the material strain in section at coordinate (x3,x2).
This file contains the abstract "Quadrature Rule" declarations to integrate quantities in the iso-par...
Eigen::MatrixXd ComputeStiffnessMatrix()
Compute the stiffness matrix of the element using gauss-integration.
This file contains the "Element" object declarations, which defines an element in a finite element me...