TSMP.cpp
Go to the documentation of this file.
1 #include "TSMP.h"
2 
3 #include <SimoxUtility/math/compare/is_equal.h>
4 #include <SimoxUtility/math/convert/mat4f_to_quat.h>
5 #include <VirtualRobot/MathTools.h>
6 
9 
10 #include "../utils.h"
11 
13 {
14 
15  TSMP::TSMP(const MPConfig& c) : MP{c}
16  {
17 
18  ARMARX_INFO << " -- created TSMP with name: " << VAROUT(cfg.name);
19  // if (cfg.viaPoints.size() > 0)
20  // {
21  // for (const auto& vp : cfg.viaPoints)
22  // {
23  //// std::map<std::string, FramedPose> viapointsMapTemp;
24  //// viapointsMapTemp = userConfig["via_points"].get<decltype(viapointsMapTemp)>();
25  // ARMARX_IMPORTANT << VAROUT(vp.canonicalValue) << " " << VAROUT(common::dVecToString(vp.viaPointValue)) << " " << VAROUT(vmp->getUmin());
26  // ARMARX_CHECK_GREATER_EQUAL(vp.canonicalValue, 0);
27  // ARMARX_CHECK_LESS_EQUAL(vp.canonicalValue, 1);
28  // PosePtr p = new Pose(vp.viaPointValue);
29  // userDefinedViaPoints.push_back({vp.canonicalValue, common::poseToDVec(p)});
30  // }
31  // }
32  }
33 
34  void
36  {
37  setStart(starts);
38  vmp->setInitialState(currentState);
39  vmp->prepareExecution();
40  }
41 
42  DVec
43  TSMP::validateViaPoint(const DVec& viapoint)
44  {
45  auto viaPoint = viapoint;
46  if (prevViapoint.size() != viapoint.size())
47  {
48  prevViapoint = viapoint;
49  }
51  return viaPoint;
52  }
53 
54  void
56  {
57  if (not running.load())
58  {
59  return;
60  }
61  if (firstRun.load())
62  {
64  }
65  TSMPInputPtr in = std::dynamic_pointer_cast<TSMPInput>(input);
66  TSMPOutputPtr out = std::dynamic_pointer_cast<TSMPOutput>(output);
67  ARMARX_CHECK_NOT_NULL(in) << "\nInput pointer for TSMP has wrong type or empty";
68  ARMARX_CHECK_NOT_NULL(out) << "\nOutput pointer for TSMP has wrong type or empty";
69 
70  out->vel.setZero();
71  if (paused.load())
72  {
73  return;
74  }
75 
76  // ARMARX_INFO << VAROUT(canonicalValue); // << VAROUT(deltaT) << VAROUT(currentPose);
77  double phaseStop = 0.0;
78  double tau = 1.0;
79 
80  if (canonicalValue < 0.01 && cfg.mpStyle == "Periodic")
81  {
82  ARMARX_IMPORTANT << " -- Periodic mode: new iteration.";
83  canonicalValue = 1.0;
84  }
85  if (canonicalValue < 1e-8 && cfg.mpStyle == "Discrete")
86  {
87  auto duration = (armarx::DateTime::Now() - mpStartTimeSec).toSecondsDouble();
88  ARMARX_INFO << " -- Discrete mode: MP " << cfg.name << " finished in " << duration
89  << " sec.";
90  running.store(false);
91  return;
92  }
93 
94  LockGuardType guard(mpMutex);
95  Eigen::Matrix4f currentPose = in->pose;
96  // Eigen::Vector6f currentVel = in->vel;
97 
98  std::vector<double> currentPoseVec = common::mat4ToDVec(currentPose);
99  for (size_t i = 0; i < currentState.size(); i++)
100  {
101  currentState[i].pos = currentPoseVec[i];
102  }
103  double deltaT = in->deltaT;
104 
105  // /// calculate phase stop based on current pose and target pose
106  // // if (cfg.enablePhaseStop)
107  // // {
108  // double posiError = 0;
109  // double oriError = 0;
110 
111  // Eigen::Vector3d targetPosition {targetPoseVec[0], targetPoseVec[1], targetPoseVec[2]};
112  // Eigen::Quaterniond targetQuaternion {targetPoseVec[3], targetPoseVec[4], targetPoseVec[5], targetPoseVec[6]}; // w,x,y,z convention
113 
114  // getError(currentPose, targetPosition, targetQuaternion, posiError, oriError);
115 
116  // double poseError = posiError + cfg.psMM2Radian * oriError;
117 
118  // double phaseDist;
119  // if (isDisturbance)
120  // {
121  // phaseDist = cfg.backDist;
122  // }
123  // else
124  // {
125  // phaseDist = cfg.goDist;
126  // }
127  // double phaseL = cfg.maxValue;
128  // double phaseK = cfg.slop;
129 
130  // phaseStop = phaseL / (1 + exp(-phaseK * (poseError - phaseDist)));
131  // double mpcFactor = 1 - (phaseStop / phaseL);
132 
133  // if (mpcFactor < 0.1)
134  // {
135  // isDisturbance = true;
136  // }
137 
138  // if (mpcFactor > 0.9)
139  // {
140  // isDisturbance = false;
141  // }
142 
143  double timeDuration = cfg.durationSec;
144  canonicalValue -= tau * deltaT / ((1 + phaseStop) * timeDuration);
145 
146  std::vector<mplib::representation::MPState> targetState =
147  std::dynamic_pointer_cast<mplib::representation::vmp::TaskSpacePrincipalComponentVMP>(
148  vmp)
149  ->calculateDesiredState(canonicalValue, currentState);
150 
151  // scale translation velocity
152  for (size_t i = 0; i < 3; ++i)
153  {
154  currentState[i].vel = tau * targetState[i].vel * cfg.amplitude / timeDuration;
155  currentState[i].pos += deltaT * currentState[i].vel;
156  }
157 
158  // // define the translation velocity
159  // if (cfg.enablePhaseStop)
160  // {
161  // float vel0, vel1;
162 
163  // for (size_t i = 0; i < 3; i++)
164  // {
165  // vel0 = currentState[i].vel;
166  // vel1 = cfg.psKpPos * (targetPoseVec[i] - currentPose(i, 3)) - cfg.psKdPos * currentVel(i);
167  // targetVel(i) = mpcFactor * vel0 + (1 - mpcFactor) * vel1;
168  // }
169  // }
170  // else
171  // {
172  for (size_t i = 0; i < 3; i++)
173  {
174  out->vel(i) = currentState[i].vel;
175  }
176  // }
177 
178  // define the rotation velocity
179  Eigen::Quaterniond dmpQuaternionVel{
180  targetState[3].vel, targetState[4].vel, targetState[5].vel, targetState[6].vel};
181  Eigen::Quaterniond dmpQuaternionPosi{
182  currentState[3].pos, currentState[4].pos, currentState[5].pos, currentState[6].pos};
183  Eigen::Quaterniond angularVel0 = dmpQuaternionVel * dmpQuaternionPosi.inverse();
184  angularVel0.w() *= 2;
185  angularVel0.x() *= 2;
186  angularVel0.y() *= 2;
187  angularVel0.z() *= 2;
188 
189 
190  double angularChange = angularVel0.angularDistance(previousAngularVelocity);
191  if (angularVel0.w() * previousAngularVelocity.w() < 0 &&
192  angularVel0.x() * previousAngularVelocity.x() < 0 &&
193  angularVel0.y() * previousAngularVelocity.y() < 0 &&
194  angularVel0.z() * previousAngularVelocity.z() < 0 && angularChange < 1e-2)
195  {
196  angularVel0.w() = -angularVel0.w();
197  angularVel0.x() = -angularVel0.x();
198  angularVel0.y() = -angularVel0.y();
199  angularVel0.z() = -angularVel0.z();
200  }
201  previousAngularVelocity = angularVel0;
202 
203  // scale orientation velocity
204  angularVel0.w() = 0;
205  angularVel0.x() =
206  tau * angularVel0.x() * /*config.oriAmplitude*/ cfg.amplitude / timeDuration;
207  angularVel0.y() =
208  tau * angularVel0.y() * /*config.oriAmplitude*/ cfg.amplitude / timeDuration;
209  angularVel0.z() =
210  tau * angularVel0.z() * /*config.oriAmplitude*/ cfg.amplitude / timeDuration;
211 
212  // Eigen::Quaterniond scaledQuat = (angularVel0 * dmpQuaternionPosi);
213  // currentState[3].vel = 0.5 * scaledQuat.w();
214  // currentState[4].vel = 0.5 * scaledQuat.x();
215  // currentState[6].vel = 0.5 * scaledQuat.z();
216  // currentState[5].vel = 0.5 * scaledQuat.y();
217 
218  for (size_t i = 3; i < 7; ++i)
219  {
220  currentState[i].vel =
221  tau * targetState[i].vel * /*config.oriAmplitude*/ cfg.amplitude / timeDuration;
222  currentState[i].pos += currentState[i].vel * deltaT;
223  }
224 
225  // if (cfg.enablePhaseStop)
226  // {
227  // Eigen::Quaternionf targetQuaternionf {(float)targetPoseVec[3], (float)targetPoseVec[4], (float)targetPoseVec[5], (float)targetPoseVec[6]};
228 
229  // Eigen::Matrix3f desiredMat(targetQuaternionf);
230  // Eigen::Matrix3f currentMat = currentPose.block<3, 3>(0, 0);
231  // Eigen::Matrix3f diffMat = desiredMat * currentMat.inverse();
232  // Eigen::Vector3f diffRPY = VirtualRobot::MathTools::eigen3f2rpy(diffMat);
233  // Eigen::Vector3f angularVel1 = /*config.phaseStopParas.Kori*/cfg.psKpOri * diffRPY - /*config.phaseStopParas.Dori*/cfg.psKdOri * currentVel.tail<3>();
234 
235  // targetVel(3) = mpcFactor * angularVel0.x() / timeDuration + (1 - mpcFactor) * angularVel1(0);
236  // targetVel(4) = mpcFactor * angularVel0.y() / timeDuration + (1 - mpcFactor) * angularVel1(1);
237  // targetVel(5) = mpcFactor * angularVel0.z() / timeDuration + (1 - mpcFactor) * angularVel1(2);
238  // }
239  // else
240  // {
241  out->vel(3) = angularVel0.x();
242  out->vel(4) = angularVel0.y();
243  out->vel(5) = angularVel0.z();
244  // }
245 
246  // // debugData.canonicalValue = canonicalValue;
247  // // debugData.oriError = oriError;
248  // // debugData.posiError = posiError;
249  // // debugData.mpcFactor = mpcFactor;
250  // // debugData.poseError = poseError;
251  // Eigen::VectorXf desiredPosition;
252  // desiredPosition.setZero(currentState.size());
253  // for (size_t i = 0; i < currentState.size(); i++)
254  // {
255  // desiredPosition[i] = currentState[i][0];
256  // }
257  std::vector<double> targetVec;
258  for (const auto& t : targetState)
259  {
260  targetVec.push_back(t.pos);
261  };
262  out->pose = common::dVecToMat4(targetVec);
263  if (firstRun.load())
264  {
265  firstRun.store(false);
266  }
267  }
268 
269 } // namespace armarx::control::common::mp
armarx::control::common::mp::MP
Definition: MP.h:68
ARMARX_IMPORTANT
#define ARMARX_IMPORTANT
Definition: Logging.h:190
armarx::control::common::mp::TSMP::TSMP
TSMP(const MPConfig &c)
Definition: TSMP.cpp:15
TSMP.h
armarx::control::common::mp::MP::canonicalValue
double canonicalValue
Definition: MP.h:155
GfxTL::Matrix4f
MatrixXX< 4, 4, float > Matrix4f
Definition: MatrixXX.h:650
armarx::core::time::DateTime::Now
static DateTime Now()
Definition: DateTime.cpp:51
ARMARX_CHECK_NOT_NULL
#define ARMARX_CHECK_NOT_NULL(ptr)
This macro evaluates whether ptr is not null and if it turns out to be false it will throw an Express...
Definition: ExpressionException.h:206
armarx::control::common::validateTSViaPoint
void validateTSViaPoint(std::vector< double > &viaPoint, std::vector< double > &viaPointReference)
Definition: utils.cpp:517
armarx::control::common::mp::TSMP::validateInitialState
void validateInitialState(const DVec &starts) override
Definition: TSMP.cpp:35
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:46
armarx::control::common::mp
This file is part of ArmarX.
Definition: aron_conversions.cpp:331
armarx::control::common::mp::TSMP::run
void run(MPInputPtr, MPOutputPtr) override
Definition: TSMP.cpp:55
armarx::control::common::mp::MP::setStart
void setStart(const DVec &starts)
Definition: MP.cpp:346
armarx::control::common::mp::TSMP::previousAngularVelocity
Eigen::Quaterniond previousAngularVelocity
Definition: TSMP.h:59
armarx::control::common::mp::MP::firstRun
std::atomic_bool firstRun
Definition: MP.h:156
Clock.h
armarx::control::common::mp::MP::cfg
MPConfig cfg
Definition: MP.h:144
armarx::control::common::mp::LockGuardType
std::lock_guard< std::recursive_mutex > LockGuardType
Definition: MP.h:45
armarx::control::common::mp::TSMPOutputPtr
std::shared_ptr< TSMPOutput > TSMPOutputPtr
Definition: TSMP.h:47
armarx::control::common::mp::DVec
Ice::DoubleSeq DVec
Definition: MP.h:47
armarx::aron::input
ReaderT::InputType & input
Definition: rw.h:12
armarx::control::common::mp::MP::paused
std::atomic_bool paused
Definition: MP.h:154
armarx::control::common::mp::TSMP::validateViaPoint
DVec validateViaPoint(const DVec &viapoint) override
Definition: TSMP.cpp:43
armarx::control::common::mp::MPInputPtr
std::shared_ptr< MPInput > MPInputPtr
Definition: MP.h:64
armarx::control::common::mp::MP::vmp
VMPPtr vmp
Definition: MP.h:149
armarx::control::common::dVecToMat4
Eigen::Matrix4f dVecToMat4(const mplib::core::DVec &dvec)
create Eigen:Matrix4f from 7D double vector.
Definition: utils.cpp:230
armarx::control::common::mp::MP::currentState
std::vector< mplib::representation::MPState > currentState
Definition: MP.h:164
armarx::control::common::mp::MP::prevViapoint
DVec prevViapoint
Definition: MP.h:111
ExpressionException.h
armarx::control::common::mp::MPOutputPtr
std::shared_ptr< MPOutput > MPOutputPtr
Definition: MP.h:65
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
VAROUT
#define VAROUT(x)
Definition: StringHelpers.h:198
armarx::control::common::mat4ToDVec
mplib::core::DVec mat4ToDVec(const Eigen::Matrix4f &mat)
convert Eigen:Matrix4f to 7D double vector.
Definition: utils.cpp:252
Eigen::Quaterniond
Quaternion< double, 0 > Quaterniond
Definition: EigenForwardDeclarations.h:62
armarx::control::common::mp::MP::mpStartTimeSec
armarx::DateTime mpStartTimeSec
Definition: MP.h:167
armarx::control::common::mp::TSMPInputPtr
std::shared_ptr< TSMPInput > TSMPInputPtr
Definition: TSMP.h:46
armarx::control::common::mp::MP::mpMutex
MutexType mpMutex
Definition: MP.h:148
armarx::control::common::mp::MP::running
std::atomic_bool running
Definition: MP.h:152