⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frne.h

📁 Robot tool box - provides many functions that are useful in robotics including such things as kinem
💻 H
字号:
/** * \file frne.h * \author Peter Corke * \brief Definitions for MEX file * *//* * Copyright (C) 1999-2008, by Peter I. Corke * * This file is part of The Robotics Toolbox for Matlab (RTB). *  * RTB is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. *  * RTB is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU Lesser General Public License for more details. *  * You should have received a copy of the GNU Leser General Public License * along with RTB.  If not, see <http://www.gnu.org/licenses/>. * */#ifndef	_rne_h_#define	_rne_h_#include	<math.h>#include	"vmath.h"#define	TRUE	1#define	FALSE	0/* * Accessing information within a MATLAB structure is inconvenient and slow. * To get around this we build our own robot and link data structures, and * copy the information from the MATLAB objects once per call.  If the call * is for multiple states values then our efficiency becomes very high. *//* Robot kinematic convention */typedef	enum _dhtype {		STANDARD,		MODIFIED} DHType;/* Link joint type */typedef	enum _axistype {		REVOLUTE = 0,		PRISMATIC = 1} Sigma;/* A robot link structure */typedef struct _link {	/**********************************************************	 *************** kinematic parameters *********************	 **********************************************************/	double	alpha;		/* link twist */	double	A;		/* link offset */	double	D;		/* link length */	double	theta;		/* link rotation angle */	double	offset;		/* link coordinate offset */	int	sigma; 		/* axis type; revolute or prismatic */	/**********************************************************	 ***************** dynamic parameters *********************	 **********************************************************/	/**************** of links ********************************/	Vect	*rbar;		/* centre of mass of link wrt link origin */	double	m;		/* mass of link */	double	*I;		/* inertia tensor of link wrt link origin */	/**************** of actuators *****************************/		/* these parameters are motor referenced */	double	Jm;		/* actuator inertia */	double	G;		/* gear ratio */	double	B;		/* actuator friction damping coefficient */	double	*Tc;		/* actuator Coulomb friction coeffient */	/**********************************************************	 **************** intermediate variables ******************	 **********************************************************/	Vect	r;		/* distance of ith origin from i-1th wrt ith */	Rot	R;		/* link rotation matrix */	Vect	omega;		/* angular velocity */	Vect	omega_d;	/* angular acceleration */	Vect	acc;		/* acceleration */	Vect	abar;		/* acceleration of centre of mass */	Vect	f;		/* inter-link force */	Vect	n;		/* inter-link moment */} Link;/* A robot */typedef struct _robot {	int	njoints;	/* number of joints */	Vect	*gravity;	/* gravity vector */	DHType	dhtype;		/* kinematic convention */	Link	*links;		/* the links */} Robot;#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -