Header file for the Step 1 motion profiles. More...
#include "TypeIIRMLMath.h"
Go to the source code of this file.
Namespaces | |
TypeIIRMLMath | |
Enumerations | |
enum | TypeIIRMLMath::Step1_Profile { TypeIIRMLMath::Step1_Undefined = 0, TypeIIRMLMath::Step1_Profile_PosLinHldNegLin = 1, TypeIIRMLMath::Step1_Profile_PosLinNegLin = 2, TypeIIRMLMath::Step1_Profile_PosTriNegLin = 3, TypeIIRMLMath::Step1_Profile_PosTrapNegLin = 4, TypeIIRMLMath::Step1_Profile_NegLinHldPosLin = 5, TypeIIRMLMath::Step1_Profile_NegLinPosLin = 6, TypeIIRMLMath::Step1_Profile_NegTriPosLin = 7, TypeIIRMLMath::Step1_Profile_NegTrapPosLin = 8 } |
Enumeration of all possible profiles of Step 1 (A, B, and C). More... | |
Functions | |
bool | TypeIIRMLMath::IsSolutionForProfile_PosLinHldNegLin_Possible (const double &CurrentPosition, const double &CurrentVelocity, const double &TargetPosition, const double &TargetVelocity, const double &MaxVelocity, const double &MaxAcceleration) |
Checks whether a valid solution for the PosLinHldNegLin velocity profile would be possible. More... | |
bool | TypeIIRMLMath::IsSolutionForProfile_PosLinNegLin_Possible (const double &CurrentPosition, const double &CurrentVelocity, const double &TargetPosition, const double &TargetVelocity, const double &MaxVelocity, const double &MaxAcceleration) |
Checks whether a valid solution for the PosLinNegLin velocity profile would be possible. More... | |
bool | TypeIIRMLMath::IsSolutionForProfile_PosTrapNegLin_Possible (const double &CurrentPosition, const double &CurrentVelocity, const double &TargetPosition, const double &TargetVelocity, const double &MaxVelocity, const double &MaxAcceleration) |
Checks whether a valid solution for the PosTrapNegLin velocity profile would be possible. More... | |
bool | TypeIIRMLMath::IsSolutionForProfile_PosTriNegLin_Possible (const double &CurrentPosition, const double &CurrentVelocity, const double &TargetPosition, const double &TargetVelocity, const double &MaxVelocity, const double &MaxAcceleration) |
Checks whether a valid solution for the PosTriNegLin velocity profile would be possible. More... | |
double | TypeIIRMLMath::ProfileStep1NegLinPosLin (const double &CurrentPosition, const double &CurrentVelocity, const double &TargetPosition, const double &TargetVelocity, const double &MaxAcceleration) |
Calculates the execution time of the NegLinPosLin velocity profile. More... | |
double | TypeIIRMLMath::ProfileStep1PosLinHldNegLin (const double &CurrentPosition, const double &CurrentVelocity, const double &TargetPosition, const double &TargetVelocity, const double &MaxVelocity, const double &MaxAcceleration) |
Calculates the execution time of the PosLinHldNegLin velocity profile. More... | |
double | TypeIIRMLMath::ProfileStep1PosLinNegLin (const double &CurrentPosition, const double &CurrentVelocity, const double &TargetPosition, const double &TargetVelocity, const double &MaxAcceleration) |
Calculates the execution time of the PosLinNegLin velocity profile. More... | |
double | TypeIIRMLMath::ProfileStep1PosTrapNegLin (const double &CurrentPosition, const double &CurrentVelocity, const double &TargetPosition, const double &TargetVelocity, const double &MaxVelocity, const double &MaxAcceleration) |
Calculates the execution time of the PosTrapNegLin velocity profile. More... | |
double | TypeIIRMLMath::ProfileStep1PosTriNegLin (const double &CurrentPosition, const double &CurrentVelocity, const double &TargetPosition, const double &TargetVelocity, const double &MaxAcceleration) |
Calculates the execution time of the PosTriNegLin velocity profile. More... | |
Header file for the Step 1 motion profiles.
Header file for the enumeration of all possible Step 1 motion profiles used for within in the library of the Type II On-Line Trajectory Generation algorithm. Further more, this file contains all calculation functions of the Step 1 motion profiles, that is, the leaves of the Step 1 decision trees 1A, 1B, and 1C. These functions calculate the minimum or maximum trajectory execution time for a specific motion profile.
The enumeration as well as all profile functions are part of the namespace TypeIIRMLMath.
Definition in file TypeIIRMLStep1Profiles.h.