HandControlBase.h
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 ...
17  * @author Jianfeng Gao ( jianfeng dot gao at kit dot edu )
18  * @date 2024
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 #pragma once
24 
25 #include <VirtualRobot/VirtualRobot.h>
26 
27 #include <ArmarXCore/interface/observers/ObserverInterface.h>
29 
31 
32 #include <armarx/control/common/control_law/aron/HandStatus.aron.generated.h>
34 
36 {
37 
39 
40  /**
41  * @defgroup Library-HandControlBase HandControlBase
42  * @ingroup Library-RobotUnit-NJointControllers
43  * A description of the library HandControlBase.
44  *
45  * @class HandControlBase
46  * @ingroup Library-HandControlBase
47  * @brief Brief description of class HandControlBase.
48  *
49  * Detailed description of class HandControlBase.
50  */
52  {
53 
54  public:
55  using HandConfig = law::arondto::HandStatus;
56  using HandConfigDict = std::map<std::string, HandConfig>;
57 
58  struct HandData
59  {
60  /// names
61  std::string kinematicChainName;
62  std::vector<std::string> jointNames;
63  size_t nJoints;
64 
65  /// devices
67  std::vector<ControlTarget1DoFActuatorPosition*> targets;
68 
69  class RTStatus : public HandConfig
70  {
71  public:
72  double deltaT = 0.0;
73  double accumulateTime = 0.0;
74  };
75 
76  Eigen::VectorXf jointLimMin;
77  Eigen::VectorXf jointLimMax;
78 
83 
84  double nonRTAccumulateTime = 0.0;
85  double nonRTDeltaT = 0.0;
91 
92  void validate();
93  void setTarget();
94 
95  HandData(const VirtualRobot::RobotNodeSetPtr& robotNodeSet, const HandConfig& cfg);
96  void rtPreActivate();
97  };
98 
99  using HandPtr = std::unique_ptr<HandData>;
100 
101  HandControlBase(const VirtualRobot::RobotPtr& rtRobot, const HandConfigDict& cfg);
103 
104 
105  void appendDevice(const std::string& handNodeSet,
106  const SensorValueBase* sv,
107  ControlTargetBase* ct,
108  const std::string& jointName);
109 
110  public:
111  void nonRTSetTarget();
112  void setTargets();
113  void updateRTStatus(const double deltaT);
114  void nonRTUpdateStatus();
115  void updateConfig(const HandConfigDict& cfg);
116  void getConfig(HandConfigDict& cfgToUpdate);
117  void reinitBuffer(HandConfigDict& cfgToUpdate);
118  void rtPreActivate();
119  void rtPostDeactivate();
120  void limbPublish(HandPtr& hand, const DebugObserverInterfacePrx& debugObs);
121  void onPublish(const DebugObserverInterfacePrx& debugObs);
122 
123  public:
124  std::map<std::string, HandPtr> hands;
125  };
126 
127  using HandControlPtr = std::shared_ptr<HandControlBase>;
128 } // namespace armarx::control::njoint_controller::core
armarx::control::njoint_controller::core::HandControlBase::setTargets
void setTargets()
Definition: HandControlBase.cpp:72
armarx::control::njoint_controller::core::HandControlBase::HandData::kinematicChainName
std::string kinematicChainName
names
Definition: HandControlBase.h:61
armarx::control::njoint_controller::core::HandControlPtr
std::shared_ptr< HandControlBase > HandControlPtr
Definition: HandControlBase.h:127
armarx::control::njoint_controller::core::HandControlBase::HandData::bufferRTToUser
TripleBuffer< HandConfig > bufferRTToUser
Definition: HandControlBase.h:89
armarx::SensorValueBase
The SensorValueBase class.
Definition: SensorValueBase.h:40
armarx::control::njoint_controller::core::HandControlBase::nonRTUpdateStatus
void nonRTUpdateStatus()
Definition: HandControlBase.cpp:48
armarx::ControlTargetBase
Brief description of class JointControlTargetBase.
Definition: ControlTargetBase.h:47
armarx::control::njoint_controller::core::HandControlBase::HandData::rtPreActivate
void rtPreActivate()
Definition: HandControlBase.cpp:195
armarx::control::njoint_controller::core::HandControlBase::HandData::RTStatus::accumulateTime
double accumulateTime
Definition: HandControlBase.h:73
armarx::control::njoint_controller::core::HandControlBase::HandData::nonRTDeltaT
double nonRTDeltaT
Definition: HandControlBase.h:85
armarx::control::njoint_controller::core::HandControlBase::limbPublish
void limbPublish(HandPtr &hand, const DebugObserverInterfacePrx &debugObs)
Definition: HandControlBase.cpp:115
armarx::control::common::SensorDevicesForNJointTorqueController
Definition: device.h:12
armarx::control::njoint_controller::core
This file is part of ArmarX.
Definition: CollisionAvoidanceCore.cpp:14
device.h
armarx::control::njoint_controller::core::HandControlBase::HandData::RTStatus
Definition: HandControlBase.h:69
armarx::control::njoint_controller::core::HandControlBase::nonRTSetTarget
void nonRTSetTarget()
Definition: HandControlBase.cpp:37
armarx::control::njoint_controller::core::HandControlBase::hands
std::map< std::string, HandPtr > hands
Definition: HandControlBase.h:124
armarx::control::njoint_controller::core::HandControlBase::rtPreActivate
void rtPreActivate()
Definition: HandControlBase.cpp:137
armarx::control::njoint_controller::core::HandControlBase::HandData::bufferRTToNonRT
TripleBuffer< RTStatus > bufferRTToNonRT
Definition: HandControlBase.h:87
armarx::control::njoint_controller::core::HandControlBase::HandData::bufferNonRTToRT
TripleBuffer< HandConfig > bufferNonRTToRT
Definition: HandControlBase.h:86
armarx::control::njoint_controller::core::HandControlBase::HandData::jointNames
std::vector< std::string > jointNames
Definition: HandControlBase.h:62
armarx::control::njoint_controller::core::HandControlBase::HandControlBase
HandControlBase(const VirtualRobot::RobotPtr &rtRobot, const HandConfigDict &cfg)
Definition: HandControlBase.cpp:11
armarx::control::njoint_controller::core::HandControlBase::HandData::jointLimMax
Eigen::VectorXf jointLimMax
Definition: HandControlBase.h:77
armarx::control::njoint_controller::core::HandControlBase::~HandControlBase
~HandControlBase()
Definition: HandControlBase.h:102
armarx::control::njoint_controller::core::HandControlBase::HandPtr
std::unique_ptr< HandData > HandPtr
Definition: HandControlBase.h:99
armarx::control::njoint_controller::core::HandControlBase::HandData::nonRTAccumulateTime
double nonRTAccumulateTime
Definition: HandControlBase.h:84
armarx::control::njoint_controller::core::HandControlBase::HandData::validate
void validate()
----------------------------------— HandData ------------------------------------------—
Definition: HandControlBase.cpp:153
armarx::control::njoint_controller::core::HandControlBase::rtPostDeactivate
void rtPostDeactivate()
Definition: HandControlBase.cpp:147
armarx::control::njoint_controller::core::HandControlBase::HandData::rtsInNonRT
RTStatus rtsInNonRT
Definition: HandControlBase.h:82
armarx::control::njoint_controller::core::HandControlBase::HandData::bufferUserToNonRT
TripleBuffer< HandConfig > bufferUserToNonRT
Definition: HandControlBase.h:88
armarx::control::njoint_controller::core::HandControlBase::HandData::setTarget
void setTarget()
Definition: HandControlBase.cpp:162
armarx::control::njoint_controller::core::HandControlBase::HandData::HandData
HandData(const VirtualRobot::RobotNodeSetPtr &robotNodeSet, const HandConfig &cfg)
Definition: HandControlBase.cpp:177
armarx::control::common::control_law
This file is part of ArmarX.
Definition: aron_conversions.cpp:68
ControlTarget1DoFActuator.h
armarx::control::njoint_controller::core::HandControlBase
Brief description of class HandControlBase.
Definition: HandControlBase.h:51
armarx::control::njoint_controller::core::HandControlBase::HandData::sensorDevices
common::SensorDevicesForNJointTorqueController sensorDevices
devices
Definition: HandControlBase.h:66
armarx::control::njoint_controller::core::HandControlBase::HandData::rts
RTStatus rts
Definition: HandControlBase.h:81
armarx::control::njoint_controller::core::HandControlBase::HandData::nJoints
size_t nJoints
Definition: HandControlBase.h:63
armarx::control::njoint_controller::core::HandControlBase::updateConfig
void updateConfig(const HandConfigDict &cfg)
Definition: HandControlBase.cpp:81
armarx::control::njoint_controller::core::HandControlBase::HandData::targetNonRT
HandConfig targetNonRT
Definition: HandControlBase.h:80
armarx::control::njoint_controller::core::HandControlBase::appendDevice
void appendDevice(const std::string &handNodeSet, const SensorValueBase *sv, ControlTargetBase *ct, const std::string &jointName)
Definition: HandControlBase.cpp:22
armarx::control::njoint_controller::core::HandControlBase::HandData::targetRT
HandConfig targetRT
Definition: HandControlBase.h:79
TripleBuffer.h
armarx::control::njoint_controller::core::HandControlBase::HandData::jointLimMin
Eigen::VectorXf jointLimMin
Definition: HandControlBase.h:76
armarx::control::njoint_controller::core::HandControlBase::HandData::targets
std::vector< ControlTarget1DoFActuatorPosition * > targets
Definition: HandControlBase.h:67
IceInternal::ProxyHandle<::IceProxy::armarx::DebugObserverInterface >
armarx::control::njoint_controller::core::HandControlBase::HandData::RTStatus::deltaT
double deltaT
Definition: HandControlBase.h:72
armarx::control::njoint_controller::core::HandControlBase::HandData
Definition: HandControlBase.h:58
armarx::control::njoint_controller::core::HandControlBase::HandConfigDict
std::map< std::string, HandConfig > HandConfigDict
Definition: HandControlBase.h:56
armarx::control::njoint_controller::core::HandControlBase::updateRTStatus
void updateRTStatus(const double deltaT)
Definition: HandControlBase.cpp:59
armarx::control::njoint_controller::core::HandControlBase::getConfig
void getConfig(HandConfigDict &cfgToUpdate)
Definition: HandControlBase.cpp:95
armarx::control::njoint_controller::core::HandControlBase::HandData::bufferConfigRTToOnPublish
TripleBuffer< HandConfig > bufferConfigRTToOnPublish
Definition: HandControlBase.h:90
armarx::control::njoint_controller::core::HandControlBase::onPublish
void onPublish(const DebugObserverInterfacePrx &debugObs)
Definition: HandControlBase.cpp:128
armarx::control::njoint_controller::core::HandControlBase::HandConfig
law::arondto::HandStatus HandConfig
Definition: HandControlBase.h:55
armarx::control::njoint_controller::core::HandControlBase::reinitBuffer
void reinitBuffer(HandConfigDict &cfgToUpdate)
Definition: HandControlBase.cpp:104
VirtualRobot::RobotPtr
std::shared_ptr< class Robot > RobotPtr
Definition: Bus.h:19
armarx::TripleBuffer< HandConfig >