3 #include <SimoxUtility/math/compare/is_equal.h>
4 #include <SimoxUtility/math/convert/mat4f_to_quat.h>
5 #include <VirtualRobot/MathTools.h>
39 vmp->prepareExecution();
45 auto viaPoint = viapoint;
66 TSMPOutputPtr out = std::dynamic_pointer_cast<TSMPOutput>(output);
77 double phaseStop = 0.0;
88 ARMARX_INFO <<
" -- Discrete mode: MP " <<
cfg.name <<
" finished in " << duration
103 double deltaT = in->deltaT;
143 double timeDuration =
cfg.durationSec;
144 canonicalValue -= tau * deltaT / ((1 + phaseStop) * timeDuration);
146 std::vector<mplib::representation::MPState> targetState =
147 std::dynamic_pointer_cast<mplib::representation::vmp::TaskSpacePrincipalComponentVMP>(
152 for (
size_t i = 0; i < 3; ++i)
154 currentState[i].vel = tau * targetState[i].vel *
cfg.amplitude / timeDuration;
172 for (
size_t i = 0; i < 3; i++)
180 targetState[3].vel, targetState[4].vel, targetState[5].vel, targetState[6].vel};
184 angularVel0.w() *= 2;
185 angularVel0.x() *= 2;
186 angularVel0.y() *= 2;
187 angularVel0.z() *= 2;
196 angularVel0.w() = -angularVel0.w();
197 angularVel0.x() = -angularVel0.x();
198 angularVel0.y() = -angularVel0.y();
199 angularVel0.z() = -angularVel0.z();
206 tau * angularVel0.x() *
cfg.amplitude / timeDuration;
208 tau * angularVel0.y() *
cfg.amplitude / timeDuration;
210 tau * angularVel0.z() *
cfg.amplitude / timeDuration;
218 for (
size_t i = 3; i < 7; ++i)
221 tau * targetState[i].vel *
cfg.amplitude / timeDuration;
241 out->vel(3) = angularVel0.x();
242 out->vel(4) = angularVel0.y();
243 out->vel(5) = angularVel0.z();
257 std::vector<double> targetVec;
258 for (
const auto& t : targetState)
260 targetVec.push_back(t.pos);