MixedImpedanceVelocityController.cpp
Go to the documentation of this file.
1 /**
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @author Jianfeng Gao ( jianfeng dot gao at kit dot edu )
17  * @date 2024
18  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
19  * GNU General Public License
20  */
21 
23 
24 #include <VirtualRobot/MathTools.h>
25 #include <VirtualRobot/Nodes/RobotNode.h>
26 #include <VirtualRobot/RobotNodeSet.h>
27 
29 #include <RobotAPI/components/units/RobotUnit/RobotUnit.h> // FIXME avoid this
30 
32 
34 {
35  NJointControllerRegistration<NJointTSMixedImpedanceVelocityMPController>
37  "NJointTSMixedImpedanceVelocityMPController");
38 
40  const RobotUnitPtr& robotUnit,
41  const NJointControllerConfigPtr& config,
42  const VirtualRobot::RobotPtr& robot) :
44  {
45  ARMARX_IMPORTANT << getClassName() + " construction done";
46  }
47 
48  std::string
50  {
51  return "NJointTSMixedImpedanceVelocityMPController";
52  }
53 
54  void
57  const Ice::Current& iceCurrent)
58  {
60  {
61  for (auto& pair : limb)
62  {
63  pair.second->rtFirstRun.store(true);
64  }
65  }
66  }
67 
68  void
70  {
71  std::lock_guard<std::recursive_mutex> lock(mtx_mps);
72  bool rtSafe = additionalTaskUpdateStatus();
73 
74  std::map<std::string, bool> mpRunning;
75  for (auto& _mp : mps)
76  {
77  mpRunning[_mp.second.mp->getMPName()] = _mp.second.mp->isRunning();
78  if (_mp.second.mp->isFinished())
79  {
80  continue;
81  }
82  if (_mp.second.mp->getRole() == "taskspace")
83  {
84  auto& arm = limb.at(_mp.second.mp->getNodeSetName());
85  if (_mp.second.mp->isFirstRun())
86  {
87  ARMARX_INFO << "checking TSMP initial status ...";
88  /// Here we check if the TSMP start pose is too far away from the current pose, if so, we would
89  /// prefer to reset the mp start from the current pose.
90  const std::vector<double> mpStart = _mp.second.mp->getStartVec();
91  const auto mpStartPose = common::dVecToMat4(mpStart);
93  arm->rtStatusInNonRT.currentPose,
94  mpStartPose,
95  "current pose",
96  "TSMP initial start pose",
97  arm->nonRtConfig.safeDistanceMMToGoal,
98  arm->nonRtConfig.safeRotAngleDegreeToGoal,
99  _mp.second.mp->getMPName() + "mp_set_target"))
100  {
101  ARMARX_INFO << "deviation from current pose too large, reset MP start pose";
102  _mp.second.mp->validateInitialState(
103  common::mat4ToDVec(arm->rtStatusInNonRT.currentPose));
104  }
105  ARMARX_INFO << "done";
106  }
107  mp::TSMPInputPtr in = std::dynamic_pointer_cast<mp::TSMPInput>(_mp.second.input);
108  in->pose = arm->rtStatusInNonRT.currentPose;
109  in->vel = arm->rtStatusInNonRT.currentTwist;
110  in->deltaT = arm->rtStatusInNonRT.deltaT;
111  }
112  else if (_mp.second.mp->getRole() == "nullspace")
113  {
114  auto& arm = limb.at(_mp.second.mp->getNodeSetName());
115  mp::JSMPInputPtr in = std::dynamic_pointer_cast<mp::JSMPInput>(_mp.second.input);
116  ARMARX_CHECK_EQUAL(arm->rtStatusInNonRT.numJoints,
117  arm->rtStatusInNonRT.jointPos.size());
118  in->angleRadian = arm->rtStatusInNonRT.jointPos;
119  in->angularVel = arm->rtStatusInNonRT.qvelFiltered;
120  in->deltaT = arm->rtStatusInNonRT.deltaT;
121  }
122  else if (_mp.second.mp->getRole() == "hand")
123  {
124  auto& hand = hands->hands.at(_mp.second.mp->getNodeSetName());
125  mp::JSMPInputPtr in = std::dynamic_pointer_cast<mp::JSMPInput>(_mp.second.input);
126  in->angleRadian =
127  hand->bufferRTToNonRT.getUpToDateReadBuffer().jointPosition.value();
128  in->deltaT = hand->bufferRTToNonRT.getReadBuffer().deltaT;
129  }
130  }
131  if (not rtSafe)
132  {
134 
135  // return;
136  // Make sure that you do not call additionalTaskSetTarget before return;
137  // since we overwrite the arm->nonRtConfig in additionalTaskUpdateStatus() with user config, which does not
138  // align with the up-to-date mp status. userConfig is only updated to align with MP status everytime a MP
139  // finishes execution. Only then, user can use this controller as if no mp is there.
140  }
141  runMPs(rtSafe);
142 
143  /// set mp target to nonRT config data structure
144  for (auto& _mp : mps)
145  {
146  if (not mpRunning.at(_mp.second.mp->getMPName()))
147  {
148  continue;
149  }
150  for (auto& ftGuard : mpConfig.ftGuard)
151  {
152  if (ftGuard.mpName == _mp.second.mp->getMPName())
153  {
154  bool const forceGuard =
155  (ftGuard.force.has_value() and
156  ftGuard.force.value() >= _mp.second.mp->getCanonicalValue());
157  bool const torqueGuard =
158  (ftGuard.torque.has_value() and
159  ftGuard.torque.value() >= _mp.second.mp->getCanonicalValue());
160 
161  auto& arm = limb.at(_mp.second.mp->getNodeSetName());
162  bool const resetForce =
163  not arm->controller.ftsensor.isForceGuardEnabled() and forceGuard;
164  bool const resetTorque =
165  not arm->controller.ftsensor.isTorqueGuardEnabled() and torqueGuard;
166  if (resetForce or resetTorque)
167  {
168  ARMARX_INFO << "Triggering force torque safety guard for "
169  << arm->kinematicChainName << " at can value "
170  << _mp.second.mp->getCanonicalValue();
171  }
172 
173  arm->nonRtConfig.ftConfig.enableSafeGuardForce = forceGuard;
174  arm->nonRtConfig.ftConfig.enableSafeGuardTorque = torqueGuard;
175  arm->controller.ftsensor.enableSafeGuard(resetForce, resetTorque);
176  }
177  }
178 
179  if (_mp.second.mp->getRole() == "taskspace")
180  {
181  auto& arm = limb.at(_mp.second.mp->getNodeSetName());
182  mp::TSMPOutputPtr out =
183  std::dynamic_pointer_cast<mp::TSMPOutput>(_mp.second.output);
184 
185  /// Note that here we only report warning but still set target to RT, we rely on MP phase stop and
186  /// RT safety mechanism to stop or pause the action if needed
188  arm->rtStatusInNonRT.currentPose,
189  out->pose,
190  "current pose",
191  "TSMP pose",
192  arm->nonRtConfig.safeDistanceMMToGoal,
193  arm->nonRtConfig.safeRotAngleDegreeToGoal,
194  _mp.second.mp->getMPName() + "mp_set_target");
195  arm->nonRtConfig.desiredPose = out->pose;
196  arm->nonRtConfig.desiredTwist = out->vel;
197  }
198  else if (_mp.second.mp->getRole() == "nullspace")
199  {
200  auto& arm = limb.at(_mp.second.mp->getNodeSetName());
201  mp::JSMPOutputPtr out =
202  std::dynamic_pointer_cast<mp::JSMPOutput>(_mp.second.output);
203  ARMARX_CHECK_EQUAL(arm->rtStatusInNonRT.numJoints, out->angleRadian.size());
204  arm->nonRtConfig.desiredNullspaceJointAngles.value() = out->angleRadian;
205  }
206  else if (_mp.second.mp->getRole() == "hand")
207  {
208  mp::JSMPOutputPtr out =
209  std::dynamic_pointer_cast<mp::JSMPOutput>(_mp.second.output);
210  auto& hand = hands->hands.at(_mp.second.mp->getNodeSetName());
211  mp::JSMPInputPtr in = std::dynamic_pointer_cast<mp::JSMPInput>(_mp.second.input);
212  ARMARX_CHECK_EQUAL(hand->targetNonRT.jointPosition.value().size(),
213  out->angleRadian.size());
214  hand->targetNonRT.jointPosition.value() = out->angleRadian;
215  }
216  if (mpRunning.at(_mp.second.mp->getMPName()) and _mp.second.mp->isFinished())
217  {
218  ARMARX_INFO << "reset buffer for nonRtConfig of " << _mp.second.mp->getMPName();
219  for (auto& pair : limb)
220  {
221  auto& arm = pair.second;
222  arm->bufferConfigUserToNonRt.reinitAllBuffers(arm->nonRtConfig);
223  }
224  for (auto& pair : limb)
225  {
226  userConfig.limbs.at(pair.first) = pair.second->nonRtConfig;
227  }
228  if (hands)
229  {
230  hands->reinitBuffer(userConfig.hands);
231  }
232  }
233  }
235  }
236 } // namespace armarx::control::njoint_mp_controller::task_space
armarx::control::njoint_controller::task_space::NJointTaskspaceMixedImpedanceVelocityController::userConfig
ConfigDict userConfig
Definition: MixedImpedanceVelocityController.h:174
ARMARX_IMPORTANT
#define ARMARX_IMPORTANT
Definition: Logging.h:190
armarx::control::njoint_controller::task_space::NJointTaskspaceMixedImpedanceVelocityController::limb
std::map< std::string, ArmPtr > limb
Definition: MixedImpedanceVelocityController.h:171
armarx::control::njoint_mp_controller::task_space::registrationControllerNJointTSMixedImpedanceVelocityMPController
NJointControllerRegistration< NJointTSMixedImpedanceVelocityMPController > registrationControllerNJointTSMixedImpedanceVelocityMPController("NJointTSMixedImpedanceVelocityMPController")
armarx::control::common::mp::JSMPInputPtr
std::shared_ptr< JSMPInput > JSMPInputPtr
Definition: JSMP.h:47
RobotUnit.h
armarx::control::njoint_controller::task_space::NJointTaskspaceMixedImpedanceVelocityController::handleRTNotSafeInNonRT
void handleRTNotSafeInNonRT()
Definition: MixedImpedanceVelocityController.cpp:255
armarx::control::njoint_controller::task_space::NJointTaskspaceMixedImpedanceVelocityController::controllableNodeSets
std::map< std::string, VirtualRobot::RobotNodeSetPtr > controllableNodeSets
Definition: MixedImpedanceVelocityController.h:176
armarx::control::common::detectAndReportPoseDeviationWarning
bool detectAndReportPoseDeviationWarning(const Eigen::Matrix4f &pose1, const Eigen::Matrix4f &pose2, const std::string &namePose1, const std::string &namePose2, float positionThrMM, float angleThrDeg, const std::string &who)
Definition: utils.cpp:646
armarx::control::njoint_mp_controller::task_space::NJointTSMixedImpedanceVelocityMPController::additionalTask
void additionalTask() override
Definition: MixedImpedanceVelocityController.cpp:69
armarx::control::common::mp::MPPool::runMPs
void runMPs(const bool rtSafe)
Definition: MPPool.cpp:87
armarx::control::njoint_mp_controller::task_space::NJointTSMixedImpedanceVelocityMPController::getClassName
std::string getClassName(const Ice::Current &=Ice::emptyCurrent) const override
Definition: MixedImpedanceVelocityController.cpp:49
armarx::control::common::mp::JSMPOutputPtr
std::shared_ptr< JSMPOutput > JSMPOutputPtr
Definition: JSMP.h:48
MixedImpedanceVelocityController.h
armarx::control::common::mp::MPPool::resetMPs
bool resetMPs(const ::armarx::aron::data::dto::DictPtr &dto, const std::map< std::string, VirtualRobot::RobotNodeSetPtr > &rnsMap)
Definition: MPPool.cpp:503
armarx::control::common::mp::TSMPOutputPtr
std::shared_ptr< TSMPOutput > TSMPOutputPtr
Definition: TSMP.h:47
armarx::control::njoint_controller::task_space::NJointTaskspaceMixedImpedanceVelocityController
Brief description of class NJointTaskspaceMixedImpedanceVelocityController.
Definition: MixedImpedanceVelocityController.h:50
armarx::control::common::mp::MPPool::mtx_mps
std::recursive_mutex mtx_mps
Definition: MPPool.h:128
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::njoint_controller::task_space::NJointTaskspaceMixedImpedanceVelocityController::additionalTaskUpdateStatus
bool additionalTaskUpdateStatus()
Definition: MixedImpedanceVelocityController.cpp:223
utils.h
armarx::control::njoint_mp_controller::task_space
This file is part of ArmarX.
Definition: AdmittanceController.cpp:29
armarx::control::common::MPType::hand
@ hand
armarx::aron::data::DictPtr
std::shared_ptr< Dict > DictPtr
Definition: Dict.h:41
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
IceUtil::Handle< class RobotUnit >
armarx::control::njoint_mp_controller::task_space::NJointTSMixedImpedanceVelocityMPController::NJointTSMixedImpedanceVelocityMPController
NJointTSMixedImpedanceVelocityMPController(const RobotUnitPtr &robotUnit, const NJointControllerConfigPtr &config, const VirtualRobot::RobotPtr &)
Definition: MixedImpedanceVelocityController.cpp:39
armarx::control::njoint_controller::task_space::NJointTaskspaceMixedImpedanceVelocityController::hands
core::HandControlPtr hands
Definition: MixedImpedanceVelocityController.h:175
armarx::control::common::mp::MPPool
Definition: MPPool.h:47
armarx::control::common::mat4ToDVec
mplib::core::DVec mat4ToDVec(const Eigen::Matrix4f &mat)
convert Eigen:Matrix4f to 7D double vector.
Definition: utils.cpp:252
armarx::control::common::mp::MPPool::mps
std::map< std::string, MPInputOutput > mps
Definition: MPPool.h:127
armarx::control::njoint_controller::task_space::NJointTaskspaceMixedImpedanceVelocityController::additionalTaskSetTarget
void additionalTaskSetTarget()
Definition: MixedImpedanceVelocityController.cpp:242
armarx::control::common::mp::TSMPInputPtr
std::shared_ptr< TSMPInput > TSMPInputPtr
Definition: TSMP.h:46
ARMARX_CHECK_EQUAL
#define ARMARX_CHECK_EQUAL(lhs, rhs)
This macro evaluates whether lhs is equal (==) rhs and if it turns out to be false it will throw an E...
Definition: ExpressionException.h:130
armarx::control::njoint_controller::task_space::NJointTaskspaceMixedImpedanceVelocityController::robotUnit
RobotUnitPtr robotUnit
Definition: MixedImpedanceVelocityController.h:173
armarx::control::njoint_mp_controller::task_space::NJointTSMixedImpedanceVelocityMPController::updateMPConfig
void updateMPConfig(const ::armarx::aron::data::dto::DictPtr &dto, const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MixedImpedanceVelocityController.cpp:55
NJointControllerRegistry.h
VirtualRobot::RobotPtr
std::shared_ptr< class Robot > RobotPtr
Definition: Bus.h:19
armarx::control::common::mp::MPPool::mpConfig
MPListConfig mpConfig
this variable is only needed when constructing the MP instances, therefore you don't need to use trip...
Definition: MPPool.h:134