3 #include <VirtualRobot/Robot.h>
4 #include <VirtualRobot/RobotNodeSet.h>
17 NJointControllerRegistration<NJointZeroTorqueOrVelocityWithFTController>
19 "NJointZeroTorqueOrVelocityWithFTController");
24 return "NJointZeroTorqueOrVelocityWithFTController";
29 const NJointZeroTorqueOrVelocityWithFTControllerConfigPtr& config,
33 RobotUnitPtr robotUnit = RobotUnitPtr::dynamicCast(prov);
39 for (
auto& robotNodeSetName : config->robotNodeSetList)
41 VirtualRobot::RobotNodeSetPtr rtRns =
rtGetRobot()->getRobotNodeSet(robotNodeSetName);
44 for (
size_t i = 0; i < rtRns->getSize(); i++)
46 std::string jointName = rtRns->getNode(i)->getName();
47 if (jointName.find(
"wri") != std::string::npos and
48 config->useZeroVelocityModeForWrist)
53 targetsVel.push_back(ct->
asA<ControlTarget1DoFActuatorZeroVelocity>());
73 target.targetTorqueOrVelocity = Ice::FloatSeq(numJoints, 0.0f);
76 ik.reset(
new VirtualRobot::DifferentialIK(
77 rtRns, rtRns->getRobot()->getRootNode(), VirtualRobot::JacobiProvider::eSVDDamped));
88 target.targetTorqueOrVelocity = Ice::FloatSeq(numJoints, 0.0f);
98 ik->getJacobianMatrix(rtTCP, VirtualRobot::IKSolver::CartesianSelection::All);
99 rtStatus.jacobi.block(0, 0, 3, rtStatus.numJoints) =
100 0.001 * rtStatus.jacobi.block(0, 0, 3, rtStatus.numJoints);
105 ik->computePseudoInverseJacobianMatrix(rtStatus.jacobi.transpose(), lambda);
106 rtStatus.jpinv = ik->computePseudoInverseJacobianMatrix(rtStatus.jacobi, lambda);
111 size_t torqueIndex = 0;
140 const std::map<std::string, ConstControlDevicePtr>& controlDevices,
141 const std::map<std::string, ConstSensorDevicePtr>&)
147 ::armarx::WidgetDescription::WidgetSeq widgets;
148 auto addSlider = [&](
const std::string& label,
float min,
float max,
float defaultValue)
150 widgets.emplace_back(
new Label(
false, label));
155 c_x->defaultValue = defaultValue;
157 widgets.emplace_back(c_x);
162 LabelPtr label =
new Label;
163 label->text =
"Robot Node Sets";
164 layout->children.emplace_back(label);
166 StringComboBoxPtr box =
new StringComboBox;
167 box->name =
"robotNodeSetSelector";
168 box->defaultIndex = 0;
169 box->multiSelect =
true;
170 box->options.push_back(
"LeftArm");
171 box->options.push_back(
"RightArm");
172 layout->children.emplace_back(box);
178 CheckBoxPtr checkBox =
new CheckBox;
179 checkBox->name =
"useZeroVelocityModeForWrist";
180 checkBox->label =
"Wrist ZeroVelocity";
181 checkBox->defaultValue =
true;
183 addSlider(
"maxTorque", 0, 100, 10);
184 addSlider(
"maxVeloicty", 0, 3.14, 2.0);
186 layout->children.insert(layout->children.end(), widgets.begin(), widgets.end());
190 NJointZeroTorqueOrVelocityWithFTControllerConfigPtr
194 auto varNodeSets = VariantPtr::dynamicCast(
values.at(
"robotNodeSetSelector"));
200 values.at(
"useZeroVelocityModeForWrist")->getBool(),
201 values.at(
"maxTorque")->getFloat(),
202 values.at(
"maxVeloicty")->getFloat()};