KeypointsImpedanceController.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 2021
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 
28 
30 #include <armarx/control/interface/ConfigurableNJointControllerInterface.h>
32 #include <armarx/control/njoint_controller/task_space/ControllerInterface.h>
33 
35 {
37 
38  /**
39  * @defgroup Library-NJointKeypointsImpedanceController NJointKeypointsImpedanceController
40  * @ingroup Library-RobotUnit-NJointControllers
41  * A description of the library NJointKeypointsImpedanceController.
42  *
43  * @class NJointKeypointsImpedanceController
44  * @ingroup Library-NJointKeypointsImpedanceController
45  * @brief Brief description of class NJointKeypointsImpedanceController.
46  *
47  * Detailed description of class NJointKeypointsImpedanceController.
48  */
50  virtual public NJointController,
52  {
53  public:
54  using ConfigPtrT = ConfigurableNJointControllerConfigPtr;
55  using AronDTO = law::arondto::KeypointControllerConfig;
56  using BO = law::KeypointsImpedanceController::Config;
57 
59  const NJointControllerConfigPtr& config,
60  const VirtualRobot::RobotPtr&);
61 
62  std::string getClassName(const Ice::Current&) const override;
63 
64  void rtRun(const IceUtil::Time& sensorValuesTimestamp,
65  const IceUtil::Time& timeSinceLastIteration) override;
66 
67  /// NJointController interface
68  // std::string getKinematicChainName(const Ice::Current&) override;
69 
71  const Ice::Current& iceCurrent = Ice::emptyCurrent) override;
73  getConfig(const Ice::Current& iceCurrent = Ice::emptyCurrent) override;
74  void validateConfigData(BO& config);
75 
76  protected:
77  virtual void additionalTask();
78  void onPublish(const SensorAndControl&,
80  const DebugObserverInterfacePrx&) override;
81 
82  protected:
83  /// devices
85  {
86  std::vector<const SensorValue1DoFActuatorTorque*> torqueSensors;
87  std::vector<const SensorValue1DoFActuatorVelocity*> velocitySensors;
88  std::vector<const SensorValue1DoFActuatorPosition*> positionSensors;
89  };
90 
92 
93  std::vector<ControlTarget1DoFActuatorTorque*> targets;
94 
95  protected:
96  /// variables
97  std::string kinematicChainName;
98  std::vector<std::string> jointNames;
100 
101  /// set buffers
106 
107  std::atomic_bool rtFirstRun = true;
108  std::atomic_bool rtReady = false;
109  std::atomic_bool reInitPreActivate = false;
110 
112 
114 
116 
117  protected:
118  /// NJointControllerBase interface
119  void onInitNJointController() override;
120  void rtPreActivateController() override;
121  void rtPostDeactivateController() override;
122  };
123 } // namespace armarx::control::njoint_controller::task_space
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::SensorDevices::velocitySensors
std::vector< const SensorValue1DoFActuatorVelocity * > velocitySensors
Definition: KeypointsImpedanceController.h:87
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::bufferRtToAdditionalTask
TripleBuffer< law::RobotStatus > bufferRtToAdditionalTask
Definition: KeypointsImpedanceController.h:105
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::bufferAdditionalTaskToUser
TripleBuffer< BO > bufferAdditionalTaskToUser
Definition: KeypointsImpedanceController.h:103
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::robotUnit
RobotUnitPtr robotUnit
Definition: KeypointsImpedanceController.h:115
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::BO
law::KeypointsImpedanceController::Config BO
Definition: KeypointsImpedanceController.h:56
NJointControllerBase.h
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::kinematicChainName
std::string kinematicChainName
variables
Definition: KeypointsImpedanceController.h:97
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController
Brief description of class NJointKeypointsImpedanceController.
Definition: KeypointsImpedanceController.h:49
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::bufferUserToRt
TripleBuffer< BO > bufferUserToRt
Definition: KeypointsImpedanceController.h:104
armarx::SynchronousNJointController
Definition: NJointControllerBase.h:1146
armarx::control::njoint_controller::task_space
Definition: AdmittanceController.cpp:43
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::sensorDevices
SensorDevices sensorDevices
Definition: KeypointsImpedanceController.h:91
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::nonRtRobot
VirtualRobot::RobotPtr nonRtRobot
Definition: KeypointsImpedanceController.h:111
armarx::NJointControllerBase::ConfigPtrT
NJointControllerConfigPtr ConfigPtrT
Definition: NJointControllerBase.h:587
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::onInitNJointController
void onInitNJointController() override
NJointControllerBase interface.
Definition: KeypointsImpedanceController.cpp:131
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::rtFirstRun
std::atomic_bool rtFirstRun
Definition: KeypointsImpedanceController.h:107
IceInternal::Handle
Definition: forward_declarations.h:8
armarx::detail::ControlThreadOutputBufferEntry
Definition: ControlThreadOutputBuffer.h:182
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::targets
std::vector< ControlTarget1DoFActuatorTorque * > targets
Definition: KeypointsImpedanceController.h:93
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::controlTargets
common::control_law::ControlTarget controlTargets
Definition: KeypointsImpedanceController.h:113
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::rtPostDeactivateController
void rtPostDeactivateController() override
This function is called after the controller is deactivated.
Definition: KeypointsImpedanceController.cpp:328
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::validateConfigData
void validateConfigData(BO &config)
Definition: KeypointsImpedanceController.cpp:220
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::jointNames
std::vector< std::string > jointNames
Definition: KeypointsImpedanceController.h:98
KeypointsImpedanceController.h
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::additionalTask
virtual void additionalTask()
Definition: KeypointsImpedanceController.cpp:152
armarx::control::common::control_law
This file is part of ArmarX.
Definition: aron_conversions.cpp:68
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::NJointKeypointsImpedanceController
NJointKeypointsImpedanceController(const RobotUnitPtr &robotUnit, const NJointControllerConfigPtr &config, const VirtualRobot::RobotPtr &)
Definition: KeypointsImpedanceController.cpp:46
armarx::control::NJointKeypointsImpedanceControllerInterface
Definition: ControllerInterface.ice:131
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::AronDTO
law::arondto::KeypointControllerConfig AronDTO
Definition: KeypointsImpedanceController.h:55
armarx::control::common::control_law::KeypointsImpedanceController
Definition: KeypointsImpedanceController.h:36
armarx::armem::Time
armarx::core::time::DateTime Time
Definition: forward_declarations.h:13
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::SensorDevices::torqueSensors
std::vector< const SensorValue1DoFActuatorTorque * > torqueSensors
Definition: KeypointsImpedanceController.h:86
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::reInitPreActivate
std::atomic_bool reInitPreActivate
Definition: KeypointsImpedanceController.h:109
armarx::aron::data::DictPtr
std::shared_ptr< Dict > DictPtr
Definition: Dict.h:41
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::bufferUserToAdditionalTask
TripleBuffer< BO > bufferUserToAdditionalTask
set buffers
Definition: KeypointsImpedanceController.h:102
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::rtPreActivateController
void rtPreActivateController() override
This function is called before the controller is activated.
Definition: KeypointsImpedanceController.cpp:292
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::SensorDevices
devices
Definition: KeypointsImpedanceController.h:84
IceUtil::Handle< class RobotUnit >
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::getClassName
std::string getClassName(const Ice::Current &) const override
Definition: KeypointsImpedanceController.cpp:120
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::updateConfig
void updateConfig(const ::armarx::aron::data::dto::DictPtr &dto, const Ice::Current &iceCurrent=Ice::emptyCurrent) override
NJointController interface.
Definition: KeypointsImpedanceController.cpp:198
IceInternal::ProxyHandle<::IceProxy::armarx::DebugDrawerInterface >
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::onPublish
void onPublish(const SensorAndControl &, const DebugDrawerInterfacePrx &, const DebugObserverInterfacePrx &) override
Definition: KeypointsImpedanceController.cpp:255
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::getConfig
::armarx::aron::data::dto::DictPtr getConfig(const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: KeypointsImpedanceController.cpp:213
armarx::control::common::control_law::ControlTarget
Definition: common.h:52
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::rtRun
void rtRun(const IceUtil::Time &sensorValuesTimestamp, const IceUtil::Time &timeSinceLastIteration) override
TODO make protected and use attorneys.
Definition: KeypointsImpedanceController.cpp:161
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::controller
law::KeypointsImpedanceController controller
Definition: KeypointsImpedanceController.h:99
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::SensorDevices::positionSensors
std::vector< const SensorValue1DoFActuatorPosition * > positionSensors
Definition: KeypointsImpedanceController.h:88
armarx::control::njoint_controller::task_space::NJointKeypointsImpedanceController::rtReady
std::atomic_bool rtReady
Definition: KeypointsImpedanceController.h:108
VirtualRobot::RobotPtr
std::shared_ptr< class Robot > RobotPtr
Definition: Bus.h:19
armarx::TripleBuffer< BO >
controller_descriptions.h