TaskspaceVelocityController.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  * @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 
22 #pragma once
23 
24 #include <VirtualRobot/VirtualRobot.h>
25 
28 
29 #include <armarx/control/common/control_law/aron/TaskspaceVelocityControllerConfig.aron.generated.h>
32 #include <armarx/control/common/ft/aron/FTConfig.aron.generated.h>
33 
35 {
36 
38  {
39  public:
40  using FTConfig = common::ft::arondto::FTConfig;
41  using Config = common::control_law::arondto::TaskspaceVelocityControllerConfig;
42  using ConfigDict = common::control_law::arondto::TaskspaceVelocityControllerConfigDict;
43 
44  /// internal status of the controller, containing intermediate variables, mutable targets
45  struct RtStatus : public RobotStatus
46  {
47  /// targets
48  // Eigen::VectorXf desiredJointTorques;
49  Eigen::VectorXf desiredJointVelocity;
50  // Eigen::VectorXf nullspaceTorque;
51  Eigen::VectorXf nullspaceVelocity;
52 
53  /// force torque
55 
56  /// task space variables
57  // Eigen::Vector6f forceImpedance;
59 
60  /// current status
61  // Eigen::VectorXf qpos;
62  // Eigen::VectorXf qvel;
63  Eigen::VectorXf qvelFiltered;
67 
68  /// intermediate results
71  Eigen::AngleAxisf oriDiffAngleAxis;
72 
73  /// others
74  Eigen::MatrixXf jacobi;
75  // Eigen::MatrixXf jtpinv;
76  Eigen::MatrixXf jpinv;
77  bool rtSafe;
78  bool rtTargetSafe = true;
79 
80  // size_t nDoFTorque;
81  // size_t nDoFVelocity;
82 
83  void reset(const unsigned int nDoF);
85  };
86 
87  unsigned int numOfJoints; // for nonRT use case
88  // size_t nDoFTorque;
89  size_t nDoFVelocity;
90 
91  private:
92  std::atomic_bool enablePreactivateInit{false};
93 
94  Eigen::MatrixXf I;
95 
96  VirtualRobot::DifferentialIKPtr ik;
97 
98  const float lambda = 2.0f;
99 
100  public:
101  VirtualRobot::RobotNodePtr tcp;
102  VirtualRobot::RobotNodePtr rtTCP;
104 
105  // std::vector<size_t> jointIDTorqueMode;
106  // std::vector<size_t> jointIDVelocityMode;
107 
108  // bool isControlModeValid(const std::vector<std::string>& nameList,
109  // const std::map<std::string, std::string>& jointControlModeMap);
110  // void updateFT(const FTConfig& c, RtStatus& rtStatus);
111  void initialize(const VirtualRobot::RobotNodeSetPtr& rns,
112  const VirtualRobot::RobotNodeSetPtr& rtRns);
113  void preactivateInit(const VirtualRobot::RobotNodeSetPtr& rns);
114 
115  void run(Config& c, RtStatus& robotStatus);
116  void firstRun();
117  };
118 } // namespace armarx::control::common::control_law
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::poseDiffMatImp
Eigen::Matrix3f poseDiffMatImp
intermediate results
Definition: TaskspaceVelocityController.h:69
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::reset
void reset(const unsigned int nDoF)
Definition: TaskspaceVelocityController.cpp:209
armarx::control::common::control_law::TaskspaceVelocityController::initialize
void initialize(const VirtualRobot::RobotNodeSetPtr &rns, const VirtualRobot::RobotNodeSetPtr &rtRns)
Definition: TaskspaceVelocityController.cpp:21
armarx::control::common::control_law::TaskspaceVelocityController::nDoFVelocity
size_t nDoFVelocity
Definition: TaskspaceVelocityController.h:89
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::currentPose
Eigen::Matrix4f currentPose
Definition: TaskspaceVelocityController.h:64
GfxTL::Matrix4f
MatrixXX< 4, 4, float > Matrix4f
Definition: MatrixXX.h:650
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::currentTwist
Eigen::Vector6f currentTwist
Definition: TaskspaceVelocityController.h:65
common.h
FTSensor.h
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::rtPreActivate
void rtPreActivate(const Eigen::Matrix4f &currentPose)
Definition: TaskspaceVelocityController.cpp:253
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::rtSafe
bool rtSafe
Definition: TaskspaceVelocityController.h:77
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:46
armarx::control::common::control_law::TaskspaceVelocityController::firstRun
void firstRun()
Definition: TaskspaceVelocityController.cpp:42
armarx::control::common::control_law::TaskspaceVelocityController
Definition: TaskspaceVelocityController.h:37
armarx::control::common::control_law::TaskspaceVelocityController::preactivateInit
void preactivateInit(const VirtualRobot::RobotNodeSetPtr &rns)
Definition: TaskspaceVelocityController.cpp:37
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::jacobi
Eigen::MatrixXf jacobi
others
Definition: TaskspaceVelocityController.h:74
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::nullspaceVelocity
Eigen::VectorXf nullspaceVelocity
Definition: TaskspaceVelocityController.h:51
armarx::control::common::control_law::TaskspaceVelocityController::rtTCP
VirtualRobot::RobotNodePtr rtTCP
Definition: TaskspaceVelocityController.h:102
armarx::control::common::control_law::RobotStatus
Definition: common.h:32
armarx::control::common::control_law
This file is part of ArmarX.
Definition: aron_conversions.cpp:68
armarx::control::common::control_law::TaskspaceVelocityController::numOfJoints
unsigned int numOfJoints
Definition: TaskspaceVelocityController.h:87
ControlTarget1DoFActuator.h
armarx::control::common::control_law::TaskspaceVelocityController::FTConfig
common::ft::arondto::FTConfig FTConfig
Definition: TaskspaceVelocityController.h:40
armarx::control::common::control_law::TaskspaceVelocityController::tcp
VirtualRobot::RobotNodePtr tcp
Definition: TaskspaceVelocityController.h:101
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::desiredPose
Eigen::Matrix4f desiredPose
Definition: TaskspaceVelocityController.h:66
armarx::control::common::control_law::TaskspaceVelocityController::ConfigDict
common::control_law::arondto::TaskspaceVelocityControllerConfigDict ConfigDict
Definition: TaskspaceVelocityController.h:42
armarx::control::common::control_law::TaskspaceVelocityController::run
void run(Config &c, RtStatus &robotStatus)
Definition: TaskspaceVelocityController.cpp:100
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::oriDiffAngleAxis
Eigen::AngleAxisf oriDiffAngleAxis
Definition: TaskspaceVelocityController.h:71
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::qvelFiltered
Eigen::VectorXf qvelFiltered
current status
Definition: TaskspaceVelocityController.h:63
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus
internal status of the controller, containing intermediate variables, mutable targets
Definition: TaskspaceVelocityController.h:45
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::desiredJointVelocity
Eigen::VectorXf desiredJointVelocity
targets
Definition: TaskspaceVelocityController.h:49
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::cartesianVelTarget
Eigen::Vector6f cartesianVelTarget
task space variables
Definition: TaskspaceVelocityController.h:58
Eigen::Matrix< float, 6, 1 >
armarx::control::common::control_law::TaskspaceVelocityController::ftsensor
common::ft::FTSensor ftsensor
Definition: TaskspaceVelocityController.h:103
GfxTL::Matrix3f
MatrixXX< 3, 3, float > Matrix3f
Definition: MatrixXX.h:649
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::jpinv
Eigen::MatrixXf jpinv
Definition: TaskspaceVelocityController.h:76
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::rtTargetSafe
bool rtTargetSafe
Definition: TaskspaceVelocityController.h:78
armarx::control::common::ft::FTSensor
Definition: FTSensor.h:51
armarx::control::common::control_law::TaskspaceVelocityController::Config
common::control_law::arondto::TaskspaceVelocityControllerConfig Config
Definition: TaskspaceVelocityController.h:41
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::poseErrorImp
Eigen::Vector6f poseErrorImp
Definition: TaskspaceVelocityController.h:70
SensorValue1DoFActuator.h
armarx::control::common::control_law::TaskspaceVelocityController::RtStatus::currentForceTorque
Eigen::Vector6f currentForceTorque
force torque
Definition: TaskspaceVelocityController.h:54