Barebones Static CTR Library 2.1.4
Loading...
Searching...
No Matches
Tube.hpp
1#pragma once
2
3// #define _USE_MATH_DEFINES
4#include <cmath>
5#include <vector>
6#include <iostream>
7#include <blaze/Math.h>
8
12class Tube
13{
14private:
18 static constexpr double pi_64 = M_PI / 64.00;
19
23 static constexpr double pi_32 = M_PI / 32.00;
24
28 double m_OD;
29
33 double m_ID;
34
38 double m_E;
39
43 double m_I;
44
48 double m_G;
49
53 double m_J;
54
58 blaze::DiagonalMatrix<blaze::StaticMatrix<double, 3UL, 3UL, blaze::rowMajor>> m_K;
59
63 double m_ls;
64
68 double m_lc;
69
73 blaze::StaticVector<double, 3UL> m_u_ast;
74
75public:
79 Tube();
80
92 Tube(double OD, double ID, double E, double G, double ls, double lc, const blaze::StaticVector<double, 3UL> &u_ast);
93
97 ~Tube() = default;
98
104 Tube(const Tube &rhs);
105
111 Tube(Tube &&rhs) noexcept;
112
119 Tube &operator=(const Tube &rhs);
120
127 Tube &operator=(Tube &&rhs) noexcept;
128
134 std::tuple<double, double, double, double, double, blaze::StaticVector<double, 3UL>> getTubeParameters();
135
141 void setYoungModulus(double E);
142
148 void setShearModulus(double G);
149
155 double getTubeLength();
156
162 blaze::StaticVector<double, 3UL> get_u_ast();
163
169 double get_u_ast(const size_t id);
170
176 void set_u_ast(const blaze::StaticVector<double, 3UL> &u_ast);
177
184 void set_u_ast(const size_t id, const double u);
185
191 double getStraightLen();
192
198 double getCurvLen();
199
205 void setStraightLen(double ls);
206
212 void setCurvLen(double lc);
213
219 blaze::DiagonalMatrix<blaze::StaticMatrix<double, 3UL, 3UL, blaze::rowMajor>> getK_Matrix();
220
226 double getK(int i);
227
234 void setK(const double EI, const double GJ);
235
241 void setBendingK(const double EI);
242};
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