Skip to content
Snippets Groups Projects
Commit 722a4fc1 authored by Pascal Weiner's avatar Pascal Weiner
Browse files

Adjusted relative platform position controller

parent 97dbbc4d
No related branches found
No related tags found
1 merge request!38Relative platform controller
...@@ -57,19 +57,20 @@ namespace armarx ...@@ -57,19 +57,20 @@ namespace armarx
sv->relativePositionY; sv->relativePositionY;
if (rtGetControlStruct().newTargetSet) if (rtGetControlStruct().newTargetSet)
{ {
offset = currentPose; startPose = currentPose;
orientationOffset = sv->relativePositionRotation; orientationOffset = sv->relativePositionRotation;
pid.reset(); pid.reset();
*const_cast<bool*>(&rtGetControlStruct().newTargetSet) = false; *const_cast<bool*>(&rtGetControlStruct().newTargetSet) = false;
} }
Eigen::Vector3f relativeCurrentPose = currentPose - offset; //position pid
Eigen::Vector2f relativeCurrentPose = currentPose - startPose;
pid.update(timeSinceLastIteration.toSecondsDouble(), relativeCurrentPose, rtGetControlStruct().target); pid.update(timeSinceLastIteration.toSecondsDouble(), relativeCurrentPose, rtGetControlStruct().target);
//rotation pid
// Revert the rotation by rotating by the negative angle // Revert the rotation by rotating by the negative angle
Eigen::Vector2f localTargetVelocity = Eigen::Rotation2Df(-sv->relativePositionRotation) * Eigen::Vector2f(pid.getControlValue()[0], pid.getControlValue()[1]); Eigen::Vector2f localTargetVelocity = Eigen::Rotation2Df(-sv->relativePositionRotation) * Eigen::Vector2f(pid.getControlValue()[0], pid.getControlValue()[1]);
// ARMARX_RT_LOGF_INFO("global target vel x: %.2f y: %2.f, local target vel x: %.2f y: %2.f rotation: %2.f", pid.getControlValue()[0], pid.getControlValue()[1], localTargetVelocity[0], localTargetVelocity[1], sv->relativePositionRotation).deactivateSpam(0.1); //ARMARX_RT_LOGF_INFO("global target vel x: %.2f y: %2.f, local target vel x: %.2f y: %2.f rotation: %2.f", pid.getControlValue()[0], pid.getControlValue()[1], localTargetVelocity[0], localTargetVelocity[1], sv->relativePositionRotation).deactivateSpam(0.1);
target->velocityX = localTargetVelocity[0]; target->velocityX = localTargetVelocity[0];
target->velocityY = localTargetVelocity[1]; target->velocityY = localTargetVelocity[1];
...@@ -99,8 +100,8 @@ namespace armarx ...@@ -99,8 +100,8 @@ namespace armarx
void NJointHolonomicPlatformRelativePositionController::rtPreActivateController() void NJointHolonomicPlatformRelativePositionController::rtPreActivateController()
{ {
offset[0] = sv->relativePositionX; startPose[0] = sv->relativePositionX;
offset[1] = sv->relativePositionY; startPose[1] = sv->relativePositionY;
orientationOffset = sv->relativePositionRotation; orientationOffset = sv->relativePositionRotation;
} }
......
...@@ -48,8 +48,8 @@ namespace armarx ...@@ -48,8 +48,8 @@ namespace armarx
{ {
public: public:
std::string platformName; std::string platformName;
float p = 0.75f; float p = 0.5f;
float i = 0.05f; float i = 0.0f;
float d = 0.0f; float d = 0.0f;
float maxVelocity = 300; float maxVelocity = 300;
float maxAcceleration = 100; float maxAcceleration = 100;
...@@ -60,7 +60,7 @@ namespace armarx ...@@ -60,7 +60,7 @@ namespace armarx
struct NJointHolonomicPlatformRelativePositionControllerTarget struct NJointHolonomicPlatformRelativePositionControllerTarget
{ {
Eigen::Vector3f target; // x,y Eigen::Vector2f target; // x,y
float targetOrientation; float targetOrientation;
float translationAccuracy = 0.0f; float translationAccuracy = 0.0f;
float rotationAccuracy = 0.0f; float rotationAccuracy = 0.0f;
...@@ -96,7 +96,7 @@ namespace armarx ...@@ -96,7 +96,7 @@ namespace armarx
MultiDimPIDController pid; MultiDimPIDController pid;
PositionThroughVelocityControllerWithAccelerationBoundsAndPeriodicPosition oriCtrl; PositionThroughVelocityControllerWithAccelerationBoundsAndPeriodicPosition oriCtrl;
ControlTargetHolonomicPlatformVelocity* target; ControlTargetHolonomicPlatformVelocity* target;
Eigen::Vector3f offset, currentPose; Eigen::Vector2f startPose, currentPose;
float orientationOffset; float orientationOffset;
// float rad2MMFactor; // float rad2MMFactor;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment