18 static constexpr double pi_64 = M_PI / 64.00;
23 static constexpr double pi_32 = M_PI / 32.00;
58 blaze::DiagonalMatrix<blaze::StaticMatrix<double, 3UL, 3UL, blaze::rowMajor>>
m_K;
92 Tube(
double OD,
double ID,
double E,
double G,
double ls,
double lc,
const blaze::StaticVector<double, 3UL> &u_ast);
134 std::tuple<double, double, double, double, double, blaze::StaticVector<double, 3UL>>
getTubeParameters();
162 blaze::StaticVector<double, 3UL>
get_u_ast();
176 void set_u_ast(
const blaze::StaticVector<double, 3UL> &u_ast);
184 void set_u_ast(
const size_t id,
const double u);
219 blaze::DiagonalMatrix<blaze::StaticMatrix<double, 3UL, 3UL, blaze::rowMajor>>
getK_Matrix();
234 void setK(
const double EI,
const double GJ);
Represents a tube in the concentric arrangement comprising the CTR robot.
Definition Tube.hpp:13
void setK(const double EI, const double GJ)
Implements a setter method for updating the bending & torional stiffness of the Tube.
Definition Tube.cpp:215
double m_G
Shear modulus of the tube material.
Definition Tube.hpp:48
Tube()
Implements the default constructor for the Tube class.
Definition Tube.cpp:7
double m_I
Second moment of area of the tube cross-section.
Definition Tube.hpp:43
~Tube()=default
Destroys the Tube object.
static constexpr double pi_32
Pi constant divided by 32.
Definition Tube.hpp:23
void set_u_ast(const blaze::StaticVector< double, 3UL > &u_ast)
Implements a setter method for updating the pre-curvature of the Tube object.
Definition Tube.cpp:144
double m_lc
Length of the curved segment of the tube.
Definition Tube.hpp:68
void setBendingK(const double EI)
Implements a setter method for updating the bending stiffness of the Tube.
Definition Tube.cpp:222
static constexpr double pi_64
Pi constant divided by 64.
Definition Tube.hpp:18
blaze::StaticVector< double, 3UL > get_u_ast()
Implements a getter method for retrieving the pre-curvature of the Tube object.
Definition Tube.cpp:122
double getStraightLen()
Implements a getter method for retrieving the length of the straight tranmission of the Tube object.
Definition Tube.cpp:166
void setCurvLen(double lc)
Implements a setter method for updating the length of the curved segment of the Tube object.
Definition Tube.cpp:184
blaze::DiagonalMatrix< blaze::StaticMatrix< double, 3UL, 3UL, blaze::rowMajor > > getK_Matrix()
Implements a getter method for retrieving the bending stiffness matrix for the Tube object.
Definition Tube.cpp:190
double getCurvLen()
Implements a getter method for retrieving the length of the curved segment of the Tube object.
Definition Tube.cpp:172
double m_J
Polar moment of inertia of the tube cross-section.
Definition Tube.hpp:53
double getTubeLength()
Implements a getter method for retrieving the tube length.
Definition Tube.cpp:116
blaze::DiagonalMatrix< blaze::StaticMatrix< double, 3UL, 3UL, blaze::rowMajor > > m_K
Stiffness matrix of the tube.
Definition Tube.hpp:58
void setYoungModulus(double E)
Implements a setter method for setting the Young's modulus of the Tube object.
Definition Tube.cpp:102
double getK(int i)
Implements a getter method for retrieving the bending/torsional stiffness of the Tube along a specifi...
Definition Tube.cpp:196
std::tuple< double, double, double, double, double, blaze::StaticVector< double, 3UL > > getTubeParameters()
Implements getter method for retrieving the tube's kinematic parameters.
Definition Tube.cpp:96
double m_OD
Outer diameter of the tube.
Definition Tube.hpp:28
void setStraightLen(double ls)
Implements a setter method for updating the length of the straight tranmission of the Tube object.
Definition Tube.cpp:178
double m_E
Young's modulus of the tube material.
Definition Tube.hpp:38
blaze::StaticVector< double, 3UL > m_u_ast
Pre-curvature vector of the tube.
Definition Tube.hpp:73
void setShearModulus(double G)
Implements a setter method for setting the Shear modulus of the Tube object.
Definition Tube.cpp:109
Tube & operator=(const Tube &rhs)
Implements the copy assignment operator for the Tube class.
Definition Tube.cpp:54
double m_ID
Inner diameter of the tube.
Definition Tube.hpp:33
double m_ls
Length of the straight segment of the tube.
Definition Tube.hpp:63