You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

108 lines
3.6 KiB

/**
* \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