25 #include <VirtualRobot/MathTools.h>
26 #include <VirtualRobot/RobotNodeSet.h>
37 #include <armarx/control/common/control_law/aron/KeypointControllerConfig.aron.generated.h>
42 NJointControllerRegistration<NJointKeypointsImpedanceController>
44 "NJointKeypointsImpedanceController");
48 const NJointControllerConfigPtr& config,
51 ConfigPtrT cfg = ConfigPtrT::dynamicCast(config);
56 auto configData = ::armarx::fromAronDict<AronDTO, BO>(cfg->config);
80 for (
size_t i = 0; i < rtRns->getSize(); ++i)
82 std::string jointName = rtRns->getNode(i)->getName();
88 auto casted_ct = ct->
asA<ControlTarget1DoFActuatorTorque>();
92 const SensorValue1DoFActuatorTorque* torqueSensor =
93 sv->
asA<SensorValue1DoFActuatorTorque>();
94 const SensorValue1DoFActuatorVelocity* velocitySensor =
95 sv->
asA<SensorValue1DoFActuatorVelocity>();
96 const SensorValue1DoFActuatorPosition* positionSensor =
97 sv->
asA<SensorValue1DoFActuatorPosition>();
104 ARMARX_WARNING <<
"No velocity sensor available for " << jointName;
108 ARMARX_WARNING <<
"No position sensor available for " << jointName;
122 return "NJointKeypointsImpedanceController";
133 runTask(
"NJointTaskspaceAdmittanceAdditionalTask",
139 <<
"Create a new thread alone NJointKeypointsImpedanceController";
140 while (
getState() == eManagedIceObjectStarted)
146 c.waitForCycleDuration();
164 double deltaT = timeSinceLastIteration.toSecondsDouble();
176 for (
size_t i = 0; i < nDoF; ++i)
199 const Ice::Current& iceCurrent)
201 auto configData = ::armarx::fromAronDict<AronDTO, BO>(dto);
216 return armarx::toAronDict<AronDTO, BO>(configData);
224 const auto checkSize = [nDoF](
const auto&
v)
226 const auto checkNonNegative = [](
const auto&
v) {
ARMARX_CHECK((
v.array() >= 0).all()); };
230 ARMARX_INFO <<
"No user defined nullspace target, reset to zero with " <<
VAROUT(nDoF);
231 configData.desiredNullspaceJointAngles = Eigen::VectorXf::Zero(nDoF);
234 checkSize(configData.desiredNullspaceJointAngles.value());
235 checkSize(configData.kdNullspace);
236 checkSize(configData.kpNullspace);
238 checkNonNegative(configData.kdNullspace);
239 checkNonNegative(configData.kpNullspace);
240 checkNonNegative(configData.kdImpedance);
241 checkNonNegative(configData.kpImpedance);
261 auto nonRtData =
controller.bufferNonRtToOnPublish.getUpToDateReadBuffer();
262 auto rtData =
controller.bufferRtToOnPublish.getUpToDateReadBuffer();
280 datafields,
"desiredKeypointPosition", nonRtData.desiredKeypointPosition);
282 datafields,
"currentKeypointPosition", nonRtData.currentKeypointPosition);
284 datafields,
"currentKeypointVelocity", nonRtData.currentKeypointVelocity);
286 datafields,
"filteredKeypointPosition", nonRtData.filteredKeypointPosition);
288 debugObs->setDebugChannel(
"NJointKeypointsImpedanceController", datafields);
296 ARMARX_IMPORTANT <<
"rt preactivate controller with target pose\n\n" << currentPose;
302 c.desiredNullspaceJointAngles.value() = rns->getJointValuesEigen();
310 const auto nDoF = rns->getSize();
317 for (
size_t i = 0; i < nDoF; ++i)