ControllerInterface.ice
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 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 <ArmarXCore/interface/core/BasicTypes.ice>
26 #include <ArmarXCore/interface/serialization/Eigen.ice>
27 
28 #include <RobotAPI/interface/aron.ice>
29 #include <RobotAPI/interface/core/Trajectory.ice>
30 #include <RobotAPI/interface/units/RobotUnit/NJointController.ice>
31 
32 #include <armarx/control/interface/ConfigurableNJointControllerInterface.ice>
33 
34 
35 module armarx
36 {
37  module control
38  {
39  dictionary<string, FloatSeqSeq> TargetPoseMap;
40  dictionary<string, Ice::FloatSeq> TargetNullspaceMap;
41 
43  {
44  void updateCollisionAvoidanceConfig(armarx::aron::data::dto::Dict config);
45  armarx::aron::data::dto::Dict getCollisionAvoidanceConfig();
46  }
47 
49  ConfigurableNJointControllerInterface
50  {
51  Ice::FloatSeq getTCPVel(string rns);
52  bool updateTargetPose(TargetPoseMap targetPoseMap,
53  TargetNullspaceMap targetNullspaceMap);
54 
55  /// ft sensor
56  void calibrateFTSensor();
57  void enableSafeGuardForceTorque(string rns, bool forceGuard, bool torqueGuard);
58  bool isSafeForceTorque(string nodeSetName);
59  };
60 
64  {
65  }
66 
68  ConfigurableNJointControllerInterface
69  {
70  Ice::FloatSeq getTCPVel(string rns);
71  bool updateTargetPose(TargetPoseMap targetPoseMap,
72  TargetNullspaceMap targetNullspaceMap);
73 
74  /// ft sensor
75  void calibrateFTSensor();
76  void enableSafeGuardForceTorque(string rns, bool forceGuard, bool torqueGuard);
77  bool isSafeForceTorque(string nodeSetName);
78  };
79 
81  ConfigurableNJointControllerInterface
82  {
83  Ice::FloatSeq getTCPVel(string rns);
84  bool updateTargetPose(TargetPoseMap targetPoseMap,
85  TargetNullspaceMap targetNullspaceMap);
86 
87  /// ft sensor
88  void calibrateFTSensor();
89  void enableSafeGuardForceTorque(string rns, bool forceGuard, bool torqueGuard);
90  bool isSafeForceTorque(string nodeSetName);
91  };
92 
94  ConfigurableNJointControllerInterface
95  {
96  Ice::FloatSeq getTCPVel(string rns);
97  bool updateTargetPose(TargetPoseMap targetPoseMap,
98  TargetNullspaceMap targetNullspaceMap);
99 
100  /// ft sensor
101  void calibrateFTSensor();
102  void enableSafeGuardForceTorque(string rns, bool forceGuard, bool torqueGuard);
103  bool isSafeForceTorque(string nodeSetName);
104  };
105 
109  {
110  }
111 
113  ConfigurableNJointControllerInterface
114  {
115  Ice::FloatSeq getTCPVel(string rns);
116  bool updateTargetPose(TargetPoseMap targetPoseMap,
117  TargetNullspaceMap targetNullspaceMap);
118 
119  /// ft sensor
120  void toggleGravityCompensation(bool toggle);
121  void calibrateFTSensor();
122  void enableSafeGuardForceTorque(string rns, bool forceGuard, bool torqueGuard);
123  bool isSafeForceTorque(string nodeSetName);
124  };
125 
126  // interface NJointTaskspaceBimanualImpedanceControllerInterface extends
127  // NJointTaskspaceImpedanceControllerInterface
128  // {
129  // };
130 
132  ConfigurableNJointControllerInterface{
133  // string getKinematicChainName();
134  };
135 
136  // class NJointTaskspaceZeroTorqueOrVelocityControllerConfig extends NJointControllerConfig
137  // {
138  // Ice::StringSeq robotNodeSetList;
139  // bool useZeroVelocityModeForWrist = true;
140  // float maxTorque = 10.0f;
141  // float maxVelocity = 2.0f;
142  // };
143 
145  ConfigurableNJointControllerInterface
146  {
147  // void setControllerTarget(Ice::FloatSeq targetTorqueOrVelocity);
148  void calibrateFTSensor();
149  };
150 
151  }; /// control
152 }; /// armarx
armarx::control::NJointTaskspaceCollisionAvoidanceMixedImpedanceVelocityControllerInterface
Definition: ControllerInterface.ice:106
armarx::control::NJointTaskspaceImpedanceControllerInterface
Definition: ControllerInterface.ice:48
armarx::control::CollisionAvoidanceControllerInterface
Definition: ControllerInterface.ice:42
armarx::control::NJointTaskspaceMixedImpedanceVelocityControllerInterface
Definition: ControllerInterface.ice:80
armarx::control::TargetNullspaceMap
dictionary< string, Ice::FloatSeq > TargetNullspaceMap
Definition: ControllerInterface.ice:40
armarx::control::NJointTaskspaceZeroTorqueOrVelocityControllerInterface
Definition: ControllerInterface.ice:144
armarx::control::NJointKeypointsImpedanceControllerInterface
Definition: ControllerInterface.ice:131
armarx::control::NJointTaskspaceAdmittanceControllerInterface
Definition: ControllerInterface.ice:112
armarx::control::NJointTaskspaceCollisionAvoidanceImpedanceControllerInterface
Definition: ControllerInterface.ice:61
armarx::control::NJointTaskspaceVelocityControllerInterface
Definition: ControllerInterface.ice:93
armarx::control::TargetPoseMap
dictionary< string, FloatSeqSeq > TargetPoseMap
Definition: ControllerInterface.ice:39
control
This file is part of ArmarX.
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::control::NJointTaskspaceSafetyImpedanceControllerInterface
Definition: ControllerInterface.ice:67