ZeroTorqueOrVelocityWithFT.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 armarx::skills::control
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 
26 #include <VirtualRobot/VirtualRobot.h>
27 
29 
30 #include <armarx/control/njoint_controller/joint_space/ControllerInterface.h>
31 
32 namespace armarx
33 {
34  class ControlTarget1DoFActuatorZeroTorque;
35  class ControlTarget1DoFActuatorZeroVelocity;
36 } // namespace armarx
37 
39 {
40 
42  {
43  Ice::FloatSeq targetTorqueOrVelocity;
44  };
45 
47 
49  public NJointControllerWithTripleBuffer<NJointZeroTorqueOrVelocityWithFTControllerTarget>,
51  {
52  public:
53  struct RtStatus
54  {
55  /// targets
56  Eigen::VectorXf desiredJointTorques;
57  Eigen::VectorXf desiredJointVelocity;
58  // Eigen::VectorXf nullspaceTorque;
59  // Eigen::VectorXf nullspaceVelocity;
60 
61  /// force torque
63 
64  /// task space variables
65  // Eigen::Vector6f forceImpedance;
67 
68  /// current status
69  Eigen::VectorXf qpos;
70  // Eigen::VectorXf qvel;
71  // Eigen::VectorXf qvelFiltered;
72  // Eigen::Matrix4f currentPose;
73  // Eigen::Vector6f currentTwist;
74  // Eigen::Matrix4f desiredPose;
75 
76  // /// intermediate results
77  // Eigen::Matrix3f poseDiffMatImp;
78  // Eigen::Vector6f poseErrorImp;
79 
80  /// others
81  Eigen::MatrixXf jacobi;
82  // Eigen::MatrixXf jtpinv;
83  Eigen::MatrixXf jpinv;
84  bool rtSafe;
85 
86  size_t nDoFTorque;
87  size_t nDoFVelocity;
88  };
89 
90  using ConfigPtrT = NJointZeroTorqueOrVelocityWithFTControllerConfigPtr;
92  RobotUnitPtr prov,
93  const NJointZeroTorqueOrVelocityWithFTControllerConfigPtr& config,
94  const VirtualRobot::RobotPtr&);
95 
96  // NJointControllerInterface interface
97  std::string getClassName(const Ice::Current&) const override;
98  // WidgetDescription::StringWidgetDictionary getFunctionDescriptions(const Ice::Current&) const override;
99  // void callDescribedFunction(const std::string& name, const StringVariantBaseMap& valueMap, const Ice::Current&) override;
100 
101  // NJointController interface
102  void rtRun(const IceUtil::Time& sensorValuesTimestamp,
103  const IceUtil::Time& timeSinceLastIteration) override;
104  void onPublish(const SensorAndControl&,
106  const DebugObserverInterfacePrx&) override;
109  const std::map<std::string, ConstControlDevicePtr>&,
110  const std::map<std::string, ConstSensorDevicePtr>&);
111 
112  static NJointZeroTorqueOrVelocityWithFTControllerConfigPtr
114 
115  protected:
116  void rtPreActivateController() override;
117  void rtPostDeactivateController() override;
118 
119  std::vector<ControlTarget1DoFActuatorZeroTorque*> targetsTorque;
120  std::vector<ControlTarget1DoFActuatorZeroVelocity*> targetsVel;
123  std::atomic_bool useZeroVelocityModeForWrist{true};
124  std::vector<bool> torqueControlled;
125 
126  // NJointZeroTorqueOrVelocityWithFTControllerInterface interface
127  public:
128  void setControllerTarget(const Ice::FloatSeq&, const Ice::Current&) override;
129 
130  private:
131  VirtualRobot::DifferentialIKPtr ik;
132  const float lambda = 2.0f;
133  Eigen::MatrixXf I;
134  };
135 
136 } // namespace armarx::control::njoint_controller::joint_space
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTControllerTarget
Definition: ZeroTorqueOrVelocityWithFT.h:41
NJointControllerWithTripleBuffer.h
armarx::StringVariantBaseMap
std::map< std::string, VariantBasePtr > StringVariantBaseMap
Definition: ManagedIceObject.h:110
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::RtStatus::jpinv
Eigen::MatrixXf jpinv
Definition: ZeroTorqueOrVelocityWithFT.h:83
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::rtRun
void rtRun(const IceUtil::Time &sensorValuesTimestamp, const IceUtil::Time &timeSinceLastIteration) override
TODO make protected and use attorneys.
Definition: ZeroTorqueOrVelocityWithFT.cpp:93
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::RtStatus::nDoFVelocity
size_t nDoFVelocity
Definition: ZeroTorqueOrVelocityWithFT.h:87
armarx::NJointControllerWithTripleBuffer
Definition: NJointControllerWithTripleBuffer.h:10
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::getClassName
std::string getClassName(const Ice::Current &) const override
Definition: ZeroTorqueOrVelocityWithFT.cpp:22
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::setControllerTarget
void setControllerTarget(const Ice::FloatSeq &, const Ice::Current &) override
Definition: ZeroTorqueOrVelocityWithFT.cpp:211
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::GenerateConfigDescription
static WidgetDescription::WidgetPtr GenerateConfigDescription(const VirtualRobot::RobotPtr &, const std::map< std::string, ConstControlDevicePtr > &, const std::map< std::string, ConstSensorDevicePtr > &)
Definition: ZeroTorqueOrVelocityWithFT.cpp:138
ProsthesisInterface.values
values
Definition: ProsthesisInterface.py:190
armarx::NJointControllerBase::ConfigPtrT
NJointControllerConfigPtr ConfigPtrT
Definition: NJointControllerBase.h:587
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController
Definition: ZeroTorqueOrVelocityWithFT.h:48
IceInternal::Handle
Definition: forward_declarations.h:8
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::targetsVel
std::vector< ControlTarget1DoFActuatorZeroVelocity * > targetsVel
Definition: ZeroTorqueOrVelocityWithFT.h:120
armarx::detail::ControlThreadOutputBufferEntry
Definition: ControlThreadOutputBuffer.h:182
armarx::control::njoint_controller::joint_space
Definition: Torque.cpp:12
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::useZeroVelocityModeForWrist
std::atomic_bool useZeroVelocityModeForWrist
Definition: ZeroTorqueOrVelocityWithFT.h:123
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::rtPreActivateController
void rtPreActivateController() override
This function is called before the controller is activated.
Definition: ZeroTorqueOrVelocityWithFT.cpp:84
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::RtStatus::cartesianVelTarget
Eigen::Vector6f cartesianVelTarget
task space variables
Definition: ZeroTorqueOrVelocityWithFT.h:66
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::targetsTorque
std::vector< ControlTarget1DoFActuatorZeroTorque * > targetsTorque
Definition: ZeroTorqueOrVelocityWithFT.h:119
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTControllerTarget::targetTorqueOrVelocity
Ice::FloatSeq targetTorqueOrVelocity
Definition: ZeroTorqueOrVelocityWithFT.h:43
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::RtStatus::qpos
Eigen::VectorXf qpos
current status
Definition: ZeroTorqueOrVelocityWithFT.h:69
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::RtStatus
Definition: ZeroTorqueOrVelocityWithFT.h:53
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::RtStatus::currentForceTorque
Eigen::Vector6f currentForceTorque
force torque
Definition: ZeroTorqueOrVelocityWithFT.h:62
armarx::control::NJointZeroTorqueOrVelocityWithFTControllerInterface
Definition: ControllerInterface.ice:72
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::maxTorque
float maxTorque
Definition: ZeroTorqueOrVelocityWithFT.h:121
max
T max(T t1, T t2)
Definition: gdiam.h:51
armarx::control::njoint_controller::joint_space::TYPEDEF_PTRS_HANDLE
TYPEDEF_PTRS_HANDLE(NJointTorqueController)
armarx::armem::Time
armarx::core::time::DateTime Time
Definition: forward_declarations.h:13
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::rtPostDeactivateController
void rtPostDeactivateController() override
This function is called after the controller is deactivated.
Definition: ZeroTorqueOrVelocityWithFT.cpp:206
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::maxVelocity
float maxVelocity
Definition: ZeroTorqueOrVelocityWithFT.h:122
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::NJointZeroTorqueOrVelocityWithFTController
NJointZeroTorqueOrVelocityWithFTController(RobotUnitPtr prov, const NJointZeroTorqueOrVelocityWithFTControllerConfigPtr &config, const VirtualRobot::RobotPtr &)
Definition: ZeroTorqueOrVelocityWithFT.cpp:27
IceUtil::Handle< class RobotUnit >
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::RtStatus::rtSafe
bool rtSafe
Definition: ZeroTorqueOrVelocityWithFT.h:84
IceInternal::ProxyHandle<::IceProxy::armarx::DebugDrawerInterface >
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::GenerateConfigFromVariants
static NJointZeroTorqueOrVelocityWithFTControllerConfigPtr GenerateConfigFromVariants(const StringVariantBaseMap &values)
Definition: ZeroTorqueOrVelocityWithFT.cpp:191
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::RtStatus::desiredJointVelocity
Eigen::VectorXf desiredJointVelocity
Definition: ZeroTorqueOrVelocityWithFT.h:57
Eigen::Matrix< float, 6, 1 >
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::RtStatus::desiredJointTorques
Eigen::VectorXf desiredJointTorques
targets
Definition: ZeroTorqueOrVelocityWithFT.h:56
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::RtStatus::jacobi
Eigen::MatrixXf jacobi
others
Definition: ZeroTorqueOrVelocityWithFT.h:81
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::torqueControlled
std::vector< bool > torqueControlled
Definition: ZeroTorqueOrVelocityWithFT.h:124
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::RtStatus::nDoFTorque
size_t nDoFTorque
Definition: ZeroTorqueOrVelocityWithFT.h:86
VirtualRobot::RobotPtr
std::shared_ptr< class Robot > RobotPtr
Definition: Bus.h:19
armarx::control::njoint_controller::joint_space::NJointZeroTorqueOrVelocityWithFTController::onPublish
void onPublish(const SensorAndControl &, const DebugDrawerInterfacePrx &, const DebugObserverInterfacePrx &) override
Definition: ZeroTorqueOrVelocityWithFT.cpp:131