dg_tools
ComImpedanceController.hpp
Go to the documentation of this file.
1 
11 #ifndef __SOT_com_impedance_Control_HH__
12 #define __SOT_com_impedance_Control_HH__
13 
14 /* Math */
15 
16 #include <math.h>
17 
18 /* Matrix */
19 #include <dynamic-graph/linear-algebra.h>
20 namespace dg = dynamicgraph;
21 
22 /*QP */
23 
24 // eigen-quadprog
25 #include <eigen-quadprog/QuadProg.h>
26 /* SOT */
27 #include <dynamic-graph/signal-time-dependent.h>
28 #include <dynamic-graph/signal-ptr.h>
29 #include <dynamic-graph/entity.h>
30 
31 namespace dynamicgraph{
32  namespace sot {
33 /* ---------------------------------------------------------------------------*/
34 /* ---- CLASS ----------------------------------------------------------------*/
35 /* ---------------------------------------------------------------------------*/
36 
38  : public Entity
39  {
40  public: /*------ Constructor --------*/
41 
42  ComImpedanceControl( const std::string &name);
43 
44  public: /*------ init --------*/
45 
46  void init( const double& step){};
47 
48  public: /*------ CONSTANTS --------*/
49 
50  static const double TIME_STEP_DEFAULT;
51 
52  public: /* ----- ENTITY INHERITANCE -----*/
53 
54  static const std::string CLASS_NAME;
55  virtual const std::string& getClassName( void ) const {return CLASS_NAME;}
56 
57  public: /* ------ SIGNALS ---------*/
58 
59  SignalPtr<dg::Vector, int> KpSIN; // is a 3d vector
60  SignalPtr<dg::Vector, int> KpAngSIN; // is a 3d vector
61  SignalPtr<dg::Vector, int> KdAngSIN; // is a 3d vector
62  SignalPtr<dg::Vector, int> KdSIN; // is a 3d vector
63  SignalPtr<dg::Vector, int> positionSIN; // is a 3d vector
64  SignalPtr<dg::Vector, int> desiredpositionSIN; // is a 3d vector
65  SignalPtr<dg::Vector, int> biasedpositionSIN;
66  SignalPtr<dg::Vector, int> velocitySIN; // is a 3d vector
67  SignalPtr<dg::Vector, int> desiredvelocitySIN; // is a 3d vector
68  SignalPtr<dg::Vector, int> biasedvelocitySIN;
69  SignalPtr<dg::Vector, int> inertiaSIN;
70  SignalPtr<dg::Vector, int> massSIN;
71  SignalPtr<dg::Vector, int> oriSIN; //base orientation 4d vector quaternion
72  SignalPtr<dg::Vector, int> desoriSIN; //base orientation 4d vector quaternion
73  SignalPtr<dg::Vector, int> angvelSIN;
74  SignalPtr<dg::Vector, int> desiredangvelSIN;
75  SignalPtr<dg::Vector, int> feedforwardforceSIN; // is a 3d vector
76  SignalPtr<dg::Vector, int> feedforwardtorquesSIN;
77  SignalPtr<dg::Vector, int> cntsensorSIN;
78  SignalPtr<dg::Vector, int> thrcntvalueSIN; // thresholded contact sensor
79  SignalPtr<dg::Vector, int> lqrerrorSIN;
80  SignalPtr<dg::Vector, int> lqrgainSIN;
81  SignalPtr<dg::Vector, int> lctrlSIN;
82  SignalPtr<dg::Vector, int> actrlSIN;
83  SignalPtr<dg::Matrix, int> hessSIN;
84  SignalPtr<dg::Vector, int> g0SIN;
85  SignalPtr<dg::Matrix, int> ceSIN;
86  // SignalPtr<dg::Vector, int> ce0SIN;
87  SignalPtr<dg::Matrix, int> ciSIN;
88  SignalPtr<dg::Vector, int> ci0SIN;
89  SignalPtr<dg::Matrix, int> regSIN;
90 
91  SignalPtr<dg::Vector, int> absendeffposSIN; // absolute end effector position from the plan 12d
92  SignalPtr<dg::Vector, int> absendeffvelSIN; // absolute end effector velocity from the plan 12d
93 
94 
96  SignalPtr<dg::Vector, int> leglengthflSIN;
97  SignalPtr<dg::Vector, int> leglengthhlSIN;
98 
99  SignalTimeDependent<dg::Vector, int> controlSOUT;
100  SignalTimeDependent<dg::Vector, int> angcontrolSOUT;
101  SignalTimeDependent<dg::Vector, int> SetPosBiasSOUT;
102  SignalTimeDependent<dg::Vector, int> SetVelBiasSOUT;
103  SignalTimeDependent<dg::Vector, int> ThrCntSensorSOUT;
104  SignalTimeDependent<dg::Vector, int> lqrcontrolSOUT;
105  SignalTimeDependent<dg::Vector, int> endefflqrcontrolSOUT; //end_effector lqr computation
106  SignalTimeDependent<dg::Vector, int> wbcontrolSOUT; //whole body control
107  // for balancing on a planck
108  SignalTimeDependent<dg::Vector, int> descomposSOUT;
109 
110 
111  protected:
112 
113  double TimeStep;
114  double& setsize(int dimension);
115  dg::Vector& return_control_torques( dg::Vector& tau, int t);
116  dg::Vector& return_angcontrol_torques( dg::Vector& angtau, int t);
117  dg::Vector& set_pos_bias(dg::Vector& pos_bias, int t);
118  dg::Vector& set_vel_bias(dg::Vector& vel_bias, int t);
119  dg::Vector& threshold_cnt_sensor(dg::Vector& thr_cnt_sensor, int t);
120  dg::Vector& return_lqr_tau( dg::Vector& lqrtau, int t);
121  dg::Vector& return_end_eff_lqr_tau( dg::Vector& end_eff_lqr_tau, int t);
122  dg::Vector& compute_end_eff_forces( dg::Vector & end_forces, int t);
123  dg::Vector& compute_des_com_pos( dg::Vector & des_com_pos, int t);
124 
125 
126  dg::Vector pos_error;
127  dg::Vector vel_error;
128  dg::Vector h_error;
129  dg::Vector ori_error;
130 
131  dg::Vector position_bias;
132  dg::Vector velocity_bias;
133 
134  float w1;
135  float w2;
136 
137  dg::Vector ce0;
138  dg::Vector end_forces;
139  dg::Matrix hess_new; // modified based on which foor is on the ground
140  dg::Vector g0_new; // modified based on which foot is on the ground
141  dg::Matrix ce_new; // modified based on which foot is on the ground
142  dg::Matrix ci_new; // modified based on which foot is on the ground
143 
144 
145 
146  Eigen::QuadProgDense qp;
147 
148  Eigen::Quaternion<double> ori_quat;
149  Eigen::Quaternion<double> des_ori_quat;
150  Eigen::Quaternion<double> ori_error_quat;
151 
152 
153  Eigen::Matrix<double, 3, 3> ori_se3;
154  Eigen::Matrix<double, 3, 3> des_ori_se3;
155  Eigen::Matrix<double, 3, 3> ori_error_se3; // refer to christian ott paper for definitions (Rdb)
156 
157  // for balncing task
158  dg::Vector diff;
159 
160  // LQR centroidal space computations
161  Eigen::MatrixXd K; // lqr_gain matrix
162  Eigen::VectorXd delta_x; // 13d
163  Eigen::Vector3d lqr_pos_error;// 3d
164  Eigen::Vector3d lqr_vel_error;// 3d
165  Eigen::Vector4d lqr_ori_error;// 3d
166  Eigen::Vector3d lqr_ang_vel_error;// 3d
167  Eigen::VectorXd f_des; // contains des centroidal f and tau
168 
169 
170 
171  int init_flag_pos;
172  int init_flag_vel;
173  int isbiasset;
174  int safetyswitch;
175  int t_start;
176  int bias_time;
177 
178  };
179  } //namespace sot
180 }//namespace dynamic_graph
181 
182 #endif // #ifndef
dg::Vector & return_end_eff_lqr_tau(dg::Vector &end_eff_lqr_tau, int t)
Definition: com_impedance_controller.cpp:274
dg::Vector & return_lqr_tau(dg::Vector &lqrtau, int t)
Definition: com_impedance_controller.cpp:110
SignalPtr< dg::Vector, int > leglengthflSIN
for balancing taks on a planck
Definition: ComImpedanceController.hpp:96
Definition: ComImpedanceController.hpp:37
Definition: ComImpedanceController.hpp:31