Classes | Public Member Functions | Private Types | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
AnaGuess::Kinematics6M180 Class Reference

Implements the kinematics for the Katana6M180. More...

#include <kinematics6M180.h>

Inheritance diagram for AnaGuess::Kinematics6M180:
Inheritance graph
[legend]

Classes

struct  angles_calc
 
struct  position
 structs, type and constants used in inverse kinematics calculation More...
 

Public Member Functions

bool directKinematics (std::vector< double > &aPosition, const std::vector< double > aAngles)
 
bool enc2rad (std::vector< double > &aAngles, const std::vector< int > aEncoders)
 
std::vector< double > getAngMax ()
 get angle max More...
 
std::vector< double > getAngMin ()
 get angle min More...
 
std::vector< double > getAngOff ()
 get angle offset More...
 
std::vector< double > getAngRange ()
 get angle range More...
 
std::vector< double > getAngStop ()
 get angle stop More...
 
std::vector< int > getDir ()
 get direction More...
 
std::vector< int > getEncOff ()
 get encoder offset More...
 
std::vector< int > getEpc ()
 get encoders per cycle More...
 
std::vector< double > getLinkLength ()
 get link length More...
 
bool inverseKinematics (std::vector< double > &aAngles, const std::vector< double > aPosition, const std::vector< double > aStartingAngles)
 
 Kinematics6M180 ()
 Constructor. More...
 
bool rad2enc (std::vector< int > &aEncoders, const std::vector< double > aAngles)
 
bool setAngOff (const std::vector< double > aAngOff)
 set angle offset More...
 
bool setAngStop (const std::vector< double > aAngStop)
 set angle stop More...
 
bool setLinkLength (const std::vector< double > aLengths)
 set link length More...
 
 ~Kinematics6M180 ()
 Destructor. More...
 
- Public Member Functions inherited from AnaGuess::Kinematics
virtual ~Kinematics ()
 Virtual destructor. More...
 

Private Types

typedef std::vector< angles_calcangles_container
 

Private Member Functions

bool angledef (angles_calc &a) const
 
bool AnglePositionTest (const angles_calc &a) const
 
void IK_b1b2costh3_6M180 (angles_calc &a, const position &p) const
 helper functions More...
 
bool initialize ()
 initialization routine More...
 
bool PositionTest6M180 (const angles_calc &a, const position &p) const
 
void thetacomp (angles_calc &a, const position &p_m) const
 

Private Attributes

std::vector< double > mAngleOffset
 Angle offset vector [rad]. More...
 
std::vector< double > mAngleStop
 Angle stop vector [rad]. More...
 
std::vector< int > mEncoderOffset
 Encoder offset vector. More...
 
std::vector< int > mEncodersPerCycle
 Encoders per cycle vector. More...
 
bool mIsInitialized
 Initialized flag. More...
 
int mNumberOfMotors
 Number of motors of the robot. More...
 
int mNumberOfSegments
 Number of segments of the robot. More...
 
std::vector< int > mRotationDirection
 Rotation direction vector [1|-1]. More...
 
std::vector< double > mSegmentLength
 Effector segment lengths vector [m]. More...
 

Static Private Attributes

static const int cNrOfPossibleSolutions = 8
 

Detailed Description

Implements the kinematics for the Katana6M180.

This class implemets the abstract kinematics interface for the Katana6M180

Definition at line 30 of file kinematics6M180.h.

Member Typedef Documentation

Definition at line 68 of file kinematics6M180.h.

Constructor & Destructor Documentation

AnaGuess::Kinematics6M180::Kinematics6M180 ( )

Constructor.

Definition at line 11 of file kinematics6M180.cpp.

AnaGuess::Kinematics6M180::~Kinematics6M180 ( )

Destructor.

Definition at line 15 of file kinematics6M180.cpp.

Member Function Documentation

bool AnaGuess::Kinematics6M180::angledef ( angles_calc a) const
private

Definition at line 473 of file kinematics6M180.cpp.

bool AnaGuess::Kinematics6M180::AnglePositionTest ( const angles_calc a) const
private

Definition at line 494 of file kinematics6M180.cpp.

bool AnaGuess::Kinematics6M180::directKinematics ( std::vector< double > &  aPosition,
const std::vector< double >  aAngles 
)
virtual

calculates the direct kinematics

Parameters
aPositionempty vector to store the position
aAnglesthe angle vector
Returns
true if no error occurred, false on error

Implements AnaGuess::Kinematics.

Definition at line 140 of file kinematics6M180.cpp.

bool AnaGuess::Kinematics6M180::enc2rad ( std::vector< double > &  aAngles,
const std::vector< int >  aEncoders 
)
virtual

calculates the angles corresponding to the given encoders

Parameters
aAnglesempty vector to store the angles
aEncodersthe encoder vector
Returns
true if no error occurred, false on error

Implements AnaGuess::Kinematics.

Definition at line 125 of file kinematics6M180.cpp.

std::vector< double > AnaGuess::Kinematics6M180::getAngMax ( )
virtual

get angle max

Implements AnaGuess::Kinematics.

Definition at line 75 of file kinematics6M180.cpp.

std::vector< double > AnaGuess::Kinematics6M180::getAngMin ( )
virtual

get angle min

Implements AnaGuess::Kinematics.

Definition at line 63 of file kinematics6M180.cpp.

std::vector< double > AnaGuess::Kinematics6M180::getAngOff ( )
virtual

get angle offset

Implements AnaGuess::Kinematics.

Definition at line 39 of file kinematics6M180.cpp.

std::vector< double > AnaGuess::Kinematics6M180::getAngRange ( )
virtual

get angle range

Implements AnaGuess::Kinematics.

Definition at line 49 of file kinematics6M180.cpp.

std::vector< double > AnaGuess::Kinematics6M180::getAngStop ( )
virtual

get angle stop

Implements AnaGuess::Kinematics.

Definition at line 44 of file kinematics6M180.cpp.

std::vector< int > AnaGuess::Kinematics6M180::getDir ( )
virtual

get direction

Implements AnaGuess::Kinematics.

Definition at line 34 of file kinematics6M180.cpp.

std::vector< int > AnaGuess::Kinematics6M180::getEncOff ( )
virtual

get encoder offset

Implements AnaGuess::Kinematics.

Definition at line 29 of file kinematics6M180.cpp.

std::vector< int > AnaGuess::Kinematics6M180::getEpc ( )
virtual

get encoders per cycle

Implements AnaGuess::Kinematics.

Definition at line 24 of file kinematics6M180.cpp.

std::vector< double > AnaGuess::Kinematics6M180::getLinkLength ( )
virtual

get link length

Implements AnaGuess::Kinematics.

Definition at line 19 of file kinematics6M180.cpp.

void AnaGuess::Kinematics6M180::IK_b1b2costh3_6M180 ( angles_calc a,
const position p 
) const
private

helper functions

Definition at line 439 of file kinematics6M180.cpp.

bool AnaGuess::Kinematics6M180::initialize ( )
privatevirtual

initialization routine

Implements AnaGuess::Kinematics.

Definition at line 382 of file kinematics6M180.cpp.

bool AnaGuess::Kinematics6M180::inverseKinematics ( std::vector< double > &  aAngles,
const std::vector< double >  aPosition,
const std::vector< double >  aStartingAngles 
)
virtual

caltulates the inverse kinematics

Parameters
aAnglesempty vector to store the angles
aPositionthe position vector
aStartingAnglesstarting angle vector to find the best (nearest) solution
Exceptions
NoSolutionExceptionif no solutios exists
Returns
true if no error occurred, false on error

Implements AnaGuess::Kinematics.

Definition at line 202 of file kinematics6M180.cpp.

bool AnaGuess::Kinematics6M180::PositionTest6M180 ( const angles_calc a,
const position p 
) const
private

Definition at line 459 of file kinematics6M180.cpp.

bool AnaGuess::Kinematics6M180::rad2enc ( std::vector< int > &  aEncoders,
const std::vector< double >  aAngles 
)
virtual

calculates the encoders corresponding to the given angles

Parameters
aEncodersempty vector to store the encoders
aAnglesthe angle vector
Returns
true if no error occurred, false on error

Implements AnaGuess::Kinematics.

Definition at line 132 of file kinematics6M180.cpp.

bool AnaGuess::Kinematics6M180::setAngOff ( const std::vector< double >  aAngOff)
virtual

set angle offset

Implements AnaGuess::Kinematics.

Definition at line 100 of file kinematics6M180.cpp.

bool AnaGuess::Kinematics6M180::setAngStop ( const std::vector< double >  aAngStop)
virtual

set angle stop

Implements AnaGuess::Kinematics.

Definition at line 112 of file kinematics6M180.cpp.

bool AnaGuess::Kinematics6M180::setLinkLength ( const std::vector< double >  aLengths)
virtual

set link length

Implements AnaGuess::Kinematics.

Definition at line 88 of file kinematics6M180.cpp.

void AnaGuess::Kinematics6M180::thetacomp ( angles_calc a,
const position p_m 
) const
private

Definition at line 448 of file kinematics6M180.cpp.

Member Data Documentation

const int AnaGuess::Kinematics6M180::cNrOfPossibleSolutions = 8
staticprivate

Definition at line 69 of file kinematics6M180.h.

std::vector<double> AnaGuess::Kinematics6M180::mAngleOffset
private

Angle offset vector [rad].

Definition at line 39 of file kinematics6M180.h.

std::vector<double> AnaGuess::Kinematics6M180::mAngleStop
private

Angle stop vector [rad].

Definition at line 41 of file kinematics6M180.h.

std::vector<int> AnaGuess::Kinematics6M180::mEncoderOffset
private

Encoder offset vector.

Definition at line 45 of file kinematics6M180.h.

std::vector<int> AnaGuess::Kinematics6M180::mEncodersPerCycle
private

Encoders per cycle vector.

Definition at line 43 of file kinematics6M180.h.

bool AnaGuess::Kinematics6M180::mIsInitialized
private

Initialized flag.

Definition at line 49 of file kinematics6M180.h.

int AnaGuess::Kinematics6M180::mNumberOfMotors
private

Number of motors of the robot.

Definition at line 33 of file kinematics6M180.h.

int AnaGuess::Kinematics6M180::mNumberOfSegments
private

Number of segments of the robot.

Definition at line 35 of file kinematics6M180.h.

std::vector<int> AnaGuess::Kinematics6M180::mRotationDirection
private

Rotation direction vector [1|-1].

Definition at line 47 of file kinematics6M180.h.

std::vector<double> AnaGuess::Kinematics6M180::mSegmentLength
private

Effector segment lengths vector [m].

Definition at line 37 of file kinematics6M180.h.


The documentation for this class was generated from the following files:


kni
Author(s): Martin Günther
autogenerated on Fri Jun 7 2019 22:06:46