32 #ifndef _LIN3DCIRCULARTUBE_HPP_ 33 #define _LIN3DCIRCULARTUBE_HPP_ 37 #include <Eigen/Dense> 60 Lin3DCircularTube(
double re,
double ri, std::unique_ptr<Material> &material,
double theta=0.0,
unsigned int ip=10);
95 Eigen::VectorXd
GetStrainAt(
double x3=0,
double x2=0);
101 Eigen::VectorXd
GetStressAt(
double x3=0,
double x2=0);
119 void UpdateState(
const Eigen::VectorXd strain,
const unsigned int cond);
void ReverseState()
Reverse the section states to previous converged state.
Eigen::VectorXd GetStrain()
Returns the resultant (generalised) strain vector over the section.
~Lin3DCircularTube()
Destroys this Lin3DCircularTube object.
Eigen::MatrixXd GetDensity()
Access the section density matrix.
Virtual class for creating a section object.
Definition: Section.hpp:45
double re
External radius.
Definition: Lin3DCircularTube.hpp:160
Eigen::VectorXd GetStressAt(double x3=0, double x2=0)
Returns the section stress at given position.
void UpdateState(const Eigen::VectorXd strain, const unsigned int cond)
Update the section state for this iteration.
double GetArea()
Computes the Angle area.
double GetShearArea3()
Computes the Angle shear area.
This file contains the abstract "Material object" declarations, which computes the strain...
This file contains the abstract "Section object" declarations, which computes the strain...
Class for creating a solid circular tube section for 3D analysis with linear elastic material for a f...
Definition: Lin3DCircularTube.hpp:49
double GetShearArea2()
Computes the Angle shear area.
unsigned int InsertPoint
Local axis coordinate.
Definition: Lin3DCircularTube.hpp:169
Eigen::MatrixXd GetTangentStiffness()
Returns the section stiffness matrix.
void CommitState()
Perform converged section state update.
Lin3DCircularTube(double re, double ri, std::unique_ptr< Material > &material, double theta=0.0, unsigned int ip=10)
Creates a Section to be specified at a Gauss-point in an Element.
double ri
Internal radius.
Definition: Lin3DCircularTube.hpp:163
double Theta
Rotation angle.
Definition: Lin3DCircularTube.hpp:166
std::unique_ptr< Section > CopySection()
Clone the 'Lin3DCircularTube' section.
Eigen::VectorXd Strain
Generalized Strain vector.
Definition: Lin3DCircularTube.hpp:172
double GetInertiaAxis2()
Computes the Angle flexural inertia.
void ComputeSectionCenter(double &zcm, double &ycm)
Gets the section centroid.
double GetInertiaAxis3()
Computes the Angle flexural inertia.
void InitialState()
Brings the section states to its initial state.
Eigen::VectorXd GetStress()
Returns the resultant (generalised) stress vector over the section.
Eigen::MatrixXd GetInitialTangentStiffness()
Returns the section initial stiffness matrix.
Eigen::VectorXd GetStrainAt(double x3=0, double x2=0)
Returns the section strain at given position.
std::unique_ptr< Material > theMaterial
The section's material.
Definition: Lin3DCircularTube.hpp:175