33 using namespace PlatformGroup;
35 #define STATE_POSITION 0
36 #define STATE_VELOCITY 1
38 #define MAX_TRANSLATION_ACCEL 0.5 // m/s²
39 #define MAX_ROTATION_ACCEL 0.75 // rad/s²
41 #define FACTOR_BETWEEN_TRANS_AND_ROT 500.0
44 PlayPlatformTrajectory::SubClassRegistry
52 double length = t->getLength(0);
54 double timelength = t->getTimeLength();
56 auto timestamps = t->getTimestamps();
58 Ice::DoubleSeq newTimestamps;
59 newTimestamps.push_back(0);
60 for (
size_t var = 0; var < timestamps.size() - 1; ++var)
62 double tBefore = timestamps.at(var);
63 double tAfter = (timestamps.at(var + 1));
65 double partLength = t->getLength(0, tBefore, tAfter);
66 double lengthPortion = partLength / length;
68 newTimestamps.push_back(*newTimestamps.rbegin() + timelength * lengthPortion);
72 for (
size_t d = 0; d < t->dim(); ++d)
74 newTraj->addDimension(t->getDimensionData(d), newTimestamps, t->getDimensionName(d));
84 double totalTime = 0.0;
85 auto timestamps = t->getTimestamps();
86 auto dimNames = t->getDimensionNames();
88 for (
size_t var = 0; var < timestamps.size() - 1; ++var)
91 t->getLength(std::find(dimNames.begin(), dimNames.end(),
"x") - dimNames.begin(),
94 timestamps.at(var + 1)) /
98 t->getLength(std::find(dimNames.begin(), dimNames.end(),
"y") - dimNames.begin(),
101 timestamps.at(var + 1)) /
105 t->getLength(std::find(dimNames.begin(), dimNames.end(),
"alpha") - dimNames.begin(),
108 timestamps.at(var + 1));
111 double xyLength =
std::sqrt(fabs(xLength * xLength + yLength * yLength));
118 if (xyLength <= 2 * sAcc)
133 double dtime = (xyTime > rotTime) ? xyTime : rotTime;
137 t = t->normalize(0.0, totalTime);
146 Ice::DoubleSeq factors = {1.0, 1.0, factor};
148 t->scaleValue(factors);
156 auto dimNames = platformTraj->getDimensionNames();
157 if (dimNames.at(0) !=
"x" || dimNames.at(1) !=
"y" || dimNames.at(2) !=
"alpha")
159 ARMARX_WARNING <<
"Trajectory misses at least one of the following needed dimensions: 'x', "
169 PlatformUnitInterfacePrx platformUnit =
c->platformUnitPrx;
171 auto dimNames = platformTraj->getDimensionNames();
172 float maxTransVel = in.getMaxTranslationVelocity();
173 float maxRotVel = in.getMaxRotationVelocity();
175 if (in.getBalanceTrajectory())
199 in.getITranslation(),
200 in.getDTranslation(),
204 in.getIOrientation(),
205 in.getDOrientation(),
209 new DatafieldRef(
c->platformUnitObserverPrx,
"platformPose",
"positionX");
211 new DatafieldRef(
c->platformUnitObserverPrx,
"platformPose",
"positionY");
213 new DatafieldRef(
c->platformUnitObserverPrx,
"platformPose",
"rotation");
217 double currentTime = 0.0;
218 bool finalPoseReached =
false;
219 int cycleTime = in.getCycleTimeMS();
222 c->debugDrawer->removeLayer(
"ActualRobotPath");
227 while (!isRunningTaskStopped())
232 if (currentTime > platformTraj->getTimeLength())
234 currentTime = platformTraj->getTimeLength();
235 finalPoseReached =
true;
238 float posx = posXRef->getDataField()->getFloat();
239 float posy = posYRef->getDataField()->getFloat();
240 float ori = oriRef->getDataField()->getFloat();
249 std::vector<Ice::DoubleSeq> allStates = platformTraj->getAllStates(currentTime, 1);
250 for (
size_t i = 0; i < platformTraj->dim(); ++i)
255 Eigen::Vector3f pos{posx, posy, 0.0f};
256 Eigen::Vector3f targetPos{targetValues[
"x"], targetValues[
"y"], 0.0f};
258 pidTrans.
update(pos, targetPos);
259 pidRot.
update(ori, targetValues[
"alpha"]);
261 Eigen::Vector3f globalNewTransVel = {
264 m = Eigen::AngleAxisf(ori, Eigen::Vector3f::UnitZ());
265 Eigen::Vector3f localVel = m.inverse() * globalNewTransVel;
268 ARMARX_INFO <<
"New values: x: " << localVel[0] <<
" , y= " << localVel[1]
269 <<
" , alpha= " << newRotVel;
271 platformUnit->move(localVel[0], localVel[1], newRotVel);
273 if (finalPoseReached && fabs(pidTrans.
previousError) < in.getPositionalAccuracy() &&
276 disableRunFunction();
277 platformUnit->move(0, 0, 0);
293 PlatformUnitInterfacePrx platformUnit =
c->platformUnitPrx;
294 platformUnit->move(0.0, 0.0, 0.0);