Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059 #ifndef CLIK_H
00060 #define CLIK_H
00061
00067
00068 static const char header_clik_rcsid[] = "$Id: clik.h,v 1.6 2006/05/16 16:11:15 gourdeau Exp $";
00069
00070 #include "robot.h"
00071
00072 #ifdef use_namespace
00073 namespace ROBOOP {
00074 using namespace NEWMAT;
00075 #endif
00076
00077
00079 #define CLICK_DH 1
00080
00081 #define CLICK_mDH 2
00082
00083 #define CLICK_mDH_min_para 3
00084
00085
00087 class Clik {
00088 public:
00089 Clik(){}
00090 Clik(const Robot & robot_, const DiagonalMatrix & Kp_, const DiagonalMatrix & Ko_,
00091 const Real eps_=0.04, const Real lambda_max_=0.04, const Real dt=1.0);
00092 Clik(const mRobot & mrobot_, const DiagonalMatrix & Kp_, const DiagonalMatrix & Ko_,
00093 const Real eps_=0.04, const Real lambda_max_=0.04, const Real dt=1.0);
00094 Clik(const mRobot_min_para & mrobot_min_para_, const DiagonalMatrix & Kp_,
00095 const DiagonalMatrix & Ko_, const Real eps_=0.04, const Real lambda_max_=0.04,
00096 const Real dt=1.0);
00097 Clik(const Clik & x);
00098 ~Clik(){}
00099 Clik & operator=(const Clik & x);
00100 void q_qdot(const Quaternion & qd, const ColumnVector & pd,
00101 const ColumnVector & pddot, const ColumnVector & wd,
00102 ColumnVector & q, ColumnVector & qp);
00103 private:
00104 int endeff_pos_ori_err(const ColumnVector & pd, const ColumnVector & pddot,
00105 const Quaternion & qd, const ColumnVector & wd);
00106
00107 Real
00108 dt,
00109 eps,
00110 lambda_max;
00111 short robot_type;
00112 Robot robot;
00113 mRobot mrobot;
00114 mRobot_min_para mrobot_min_para;
00115 DiagonalMatrix Kp,
00116 Ko;
00117
00118 ColumnVector q ,
00119 qp,
00120 qp_prev,
00121 Kpep,
00122 Koe0Quat,
00123 v;
00124 };
00125
00126 #ifdef use_namespace
00127 }
00128 #endif
00129
00130 #endif