RetrieveHand.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  * @package control::ArmarXObjects::retrieve_hand
17  * @author Jianfeng Gao ( jianfeng dot gao at kit dot edu )
18  * @date 2023
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 #include "RetrieveHand.h"
24 
26 
28 #include <armarx/control/deprecated_njoint_mp_controller/task_space/ControllerInterface.h>
30 
32 {
34 
38  remote(remote), properties(properties)
39  {
40  }
41 
42  void
43  RetrieveHand::_deleteTSVMPController()
44  {
45  NJointControllerInterfacePrx controller =
46  remote.robotUnit->getNJointController("dmpController_RetrieveHand");
47  if (controller)
48  {
49  ARMARX_DEBUG << "dmpController_RetrieveHand exists, but need to be deleted.";
50  if (controller->isControllerActive())
51  {
52  controller->deactivateController();
53  const auto metronomeTargetPeriod = armarx::Duration::MilliSeconds(10);
54  armarx::Metronome loopScheduler(metronomeTargetPeriod);
55  while (controller->isControllerActive())
56  {
57  loopScheduler.waitForNextTick();
58  }
59  }
60  controller->deleteController();
62  ARMARX_DEBUG << "dmpController_RetrieveHand is deleted";
63  }
64  }
65 
66  bool
67  RetrieveHand::_runTSVMPController()
68  {
69  ARMARX_IMPORTANT << "Creating TSVMP Controller for Retrieve hand skill";
70  double phaseL = 100;
71  double phaseK = 1000;
72  double phaseDist0 = 50;
73  double phaseDist1 = 10;
74  double phaseKp = 2;
75  double phaseKd = 1;
76  double posToOriRatio = 10;
77  double amp = 1;
78  double maxLinearVel = 1000;
79  double maxAngularVel = 10;
80 
81  _deleteTSVMPController();
82 
83  armarx::NJointTaskSpaceDMPControllerConfigPtr tsConfig =
85  20,
86  1,
87  "Linear",
88  "Discrete",
89  amp,
90  phaseL,
91  phaseK,
92  phaseDist0,
93  phaseDist1,
94  phaseKp,
95  phaseKd,
97  posToOriRatio,
99  "",
100  "",
102  maxLinearVel,
103  maxAngularVel,
104  50.0,
105  "DMP",
110  1.0,
111  1.0);
112 
113  armarx::NJointTaskSpaceDMPControllerInterfacePrx dmpController =
114  armarx::NJointTaskSpaceDMPControllerInterfacePrx::checkedCast(
115  remote.robotUnit->createNJointController(
116  "NJointTSDMPController", "dmpController_RetrieveHand", tsConfig));
117 
118 
119  std::vector<std::string> fileNames = properties.fileNames;
120  dmpController->learnDMPFromFiles(fileNames);
121 
122  // load robot
124  robotReader.connect(remote.memoryNameSystem);
125 
127  auto r = robotReader.getSynchronizedRobot(properties.robotName, now);
128  ARMARX_CHECK(r.get());
129 
130  std::vector<double> goals;
131  Eigen::Matrix4f targetPoseInRoot = properties.targetPose.toRootFrame(r)->toEigen();
132  // Eigen::Matrix4f targetPoseInRoot = properties.targetPose.toEigen();
133  goals = armarx::control::common::mat4ToDVec(targetPoseInRoot);
134  ARMARX_INFO << "Running VMP with goal \n"
135  << VAROUT(targetPoseInRoot) << ", vec: \n"
137 
138  // if (in.isViaPoseListSet() && in.isViaPoseCanValSet() && in.getViaPoseList().size() == in.getViaPoseCanVal().size())
139  // {
140  // for (size_t i = 0; i < in.getViaPoseList().size(); ++i)
141  // {
142  // dmpController->setViaPoints(in.getViaPoseCanVal().at(i), Helpers::pose2dvec(in.getViaPoseList().at(i)->toEigen()));
143  // }
144  // }
145 
146  dmpController->activateController();
147 
148  dmpController->runDMP(goals, 1.0);
149 
150  const auto metronomeTargetPeriod = armarx::Duration::MilliSeconds(10);
151  armarx::Metronome loopScheduler(metronomeTargetPeriod);
152  ARMARX_INFO << "VMP controller started";
153  while (running.load() && not dmpController->isFinished())
154  {
155  // ARMARX_INFO << VAROUT(dmpController->getCanVal());
156  loopScheduler.waitForNextTick();
157  }
158 
159  ARMARX_DEBUG << "VMP Controller finished, try to delete controller";
160  dmpController->deactivateController();
161  while (dmpController->isControllerActive())
162  {
163  loopScheduler.waitForNextTick();
164  }
165  dmpController->deleteController();
166 
167  running.store(false);
168  ARMARX_INFO << "Retrieve hand skill finished";
169  return true;
170  }
171 
172 } // namespace armarx::control::retrieve_hand::core
armarx::control::retrieve_hand::core::RetrieveHand::Remote::robotUnit
armarx::RobotUnitInterfacePrx robotUnit
Definition: RetrieveHand.h:51
armarx::control::retrieve_hand::core
Definition: RetrieveHand.cpp:31
armarx::NJointTaskSpaceDMPControllerConfig
Definition: ControllerInterface.ice:42
armarx::control::retrieve_hand::core::RetrieveHand::Properties::timeDurationInSec
double timeDurationInSec
Definition: RetrieveHand.h:58
armarx::armem::robot_state::VirtualRobotReader
The VirtualRobotReader class.
Definition: VirtualRobotReader.h:39
ARMARX_IMPORTANT
#define ARMARX_IMPORTANT
Definition: Logging.h:190
armarx::control::retrieve_hand::core::RetrieveHand::Properties::kpAngular
float kpAngular
Definition: RetrieveHand.h:62
GfxTL::Matrix4f
MatrixXX< 4, 4, float > Matrix4f
Definition: MatrixXX.h:650
armarx::core::time::DateTime::Now
static DateTime Now()
Definition: DateTime.cpp:51
armarx::control::retrieve_hand::core::RetrieveHand::Remote
Definition: RetrieveHand.h:46
armarx::control::deprecated_njoint_mp_controller::task_space
Definition: DeprecatedNJointPeriodicTSDMPCompliantController.cpp:20
armarx::armem::robot_state::RobotReader::connect
virtual void connect(armem::client::MemoryNameSystem &memoryNameSystem)
Definition: RobotReader.cpp:49
RetrieveHand.h
ARMARX_CHECK
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
Definition: ExpressionException.h:82
armarx::control::retrieve_hand::core::RetrieveHand::Properties::robotNodeSet
std::string robotNodeSet
Definition: RetrieveHand.h:57
armarx::control::retrieve_hand::core::RetrieveHand::Properties::fileNames
std::vector< std::string > fileNames
Definition: RetrieveHand.h:66
armarx::control::common::dVecToString
std::string dVecToString(const mplib::core::DVec &dvec)
Definition: utils.cpp:301
armarx::control::retrieve_hand::core::RetrieveHand::Properties::kpLinear
float kpLinear
Definition: RetrieveHand.h:61
controller
Definition: AddOperation.h:39
ARMARX_DEBUG
#define ARMARX_DEBUG
Definition: Logging.h:184
armarx::control::retrieve_hand::core::RetrieveHand::properties
Properties properties
Definition: RetrieveHand.h:96
armarx::control::retrieve_hand::core::RetrieveHand::Remote::memoryNameSystem
armarx::armem::client::MemoryNameSystem memoryNameSystem
Definition: RetrieveHand.h:49
Metronome.h
armarx::control::retrieve_hand::core::RetrieveHand::Properties
Definition: RetrieveHand.h:54
armarx::control::retrieve_hand::core::RetrieveHand::Properties::kdLinear
float kdLinear
Definition: RetrieveHand.h:63
armarx::armem::robot_state::VirtualRobotReader::getSynchronizedRobot
VirtualRobot::RobotPtr getSynchronizedRobot(const std::string &name, const VirtualRobot::RobotIO::RobotDescription &loadMode=VirtualRobot::RobotIO::RobotDescription::eStructure, bool blocking=true)
armarx::control::retrieve_hand::core::RetrieveHand::remote
Remote remote
Definition: RetrieveHand.h:95
armarx::control::retrieve_hand::core::RetrieveHand::RetrieveHand
RetrieveHand(const Remote &, const Properties &)
Definition: RetrieveHand.cpp:35
utils.h
armarx::TimeUtil::SleepMS
static void SleepMS(float milliseconds)
Definition: TimeUtil.h:203
armarx::NJointTaskSpaceDMPControllerMode::eAll
@ eAll
Definition: ControllerInterface.ice:38
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
VAROUT
#define VAROUT(x)
Definition: StringHelpers.h:198
armarx::core::time::Metronome
Simple rate limiter for use in loops to maintain a certain frequency given a clock.
Definition: Metronome.h:34
armarx::control::retrieve_hand::core::RetrieveHand::Properties::robotName
std::string robotName
Definition: RetrieveHand.h:56
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::retrieve_hand::core::RetrieveHand::Properties::targetPose
armarx::FramedPose targetPose
Definition: RetrieveHand.h:60
armarx::FramedPose::toRootFrame
FramedPosePtr toRootFrame(const SharedRobotInterfacePrx &referenceRobot) const
Definition: FramedPose.cpp:620
NJointTSDMPController.h
armarx::control::retrieve_hand::core::RetrieveHand::Properties::kdAngular
float kdAngular
Definition: RetrieveHand.h:64
armarx::core::time::Duration::MilliSeconds
static Duration MilliSeconds(std::int64_t milliSeconds)
Constructs a duration in milliseconds.
Definition: Duration.cpp:48