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 RobotControllers::RobotNJointControllersInterface
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/core/Trajectory.ice>
29
#include <RobotAPI/interface/units/RobotUnit/NJointController.ice>
30
31
#include <
armarx/control/common/mp/MPPoolInterface.ice
>
32
#include <armarx/control/interface/ConfigurableNJointControllerInterface.ice>
33
#include <
armarx/control/njoint_controller/task_space/ControllerInterface.ice
>
34
35
36
module
armarx
37
{
38
module
control
39
{
40
interface
TSMPCtrlInterface
extends
41
TSCtrlInterface
,
42
MPPoolInterface
{};
43
44
interface
TSMPColAvoidCtrlInterface
extends
45
TSColAvoidCtrlInterface
,
46
MPPoolInterface
{};
47
48
/// previous implementations
49
interface
NJointTSAdmittanceMPControllerInterface
extends
50
NJointTaskspaceAdmittanceControllerInterface
,
51
MPPoolInterface
{};
52
53
interface
NJointTSImpedanceMPControllerInterface
extends
54
NJointTaskspaceImpedanceControllerInterface
,
55
MPPoolInterface
{};
56
57
interface
NJointTSCollisionAvoidanceImpedanceMPControllerInterface
extends
58
NJointTaskspaceCollisionAvoidanceImpedanceControllerInterface
,
59
MPPoolInterface
{};
60
61
interface
NJointTSObjectCollisionAvoidanceImpedanceMPControllerInterface
extends
62
NJointTaskspaceObjectCollisionAvoidanceImpedanceControllerInterface
,
63
MPPoolInterface
{};
64
65
interface
NJointTSSafetyImpedanceMPControllerInterface
extends
66
NJointTaskspaceSafetyImpedanceControllerInterface
,
67
MPPoolInterface
{};
68
69
interface
NJointTSMixedImpedanceVelocityMPControllerInterface
extends
70
NJointTaskspaceMixedImpedanceVelocityControllerInterface
,
71
MPPoolInterface
{};
72
73
interface
NJointTSVelocityMPControllerInterface
extends
74
NJointTaskspaceVelocityControllerInterface
,
75
MPPoolInterface
{};
76
77
interface
NJointTSCollisionAvoidanceMixedImpedanceVelocityMPControllerInterface
extends
78
NJointTaskspaceCollisionAvoidanceMixedImpedanceVelocityControllerInterface
,
79
MPPoolInterface
{};
80
81
interface
NJointWipingMixImpVelColMPControllerInterface
extends
82
NJointTaskspaceCollisionAvoidanceMixedImpedanceVelocityControllerInterface
,
83
MPPoolInterface
84
{
85
void
updateAdaptiveConfig
(armarx::aron::data::dto::Dict config);
86
};
87
88
interface
NJointWipingVelMPControllerInterface
extends
89
NJointTaskspaceVelocityControllerInterface
,
90
MPPoolInterface
91
{
92
void
updateAdaptiveConfig
(armarx::aron::data::dto::Dict config);
93
};
94
95
interface
NJointWipingImpMPControllerInterface
extends
96
NJointTaskspaceImpedanceControllerInterface
,
97
MPPoolInterface
98
{
99
void
updateAdaptiveConfig
(armarx::aron::data::dto::Dict config);
100
};
101
102
};
/// control
103
};
/// armarx
MPPoolInterface.ice
armarx::MPPoolInterface
Definition
MPPoolInterface.ice:39
armarx::control::NJointTSAdmittanceMPControllerInterface
previous implementations
Definition
ControllerInterface.ice:51
armarx::control::NJointTSCollisionAvoidanceImpedanceMPControllerInterface
Definition
ControllerInterface.ice:59
armarx::control::NJointTSCollisionAvoidanceMixedImpedanceVelocityMPControllerInterface
Definition
ControllerInterface.ice:79
armarx::control::NJointTSImpedanceMPControllerInterface
Definition
ControllerInterface.ice:55
armarx::control::NJointTSMixedImpedanceVelocityMPControllerInterface
Definition
ControllerInterface.ice:71
armarx::control::NJointTSObjectCollisionAvoidanceImpedanceMPControllerInterface
Definition
ControllerInterface.ice:63
armarx::control::NJointTSSafetyImpedanceMPControllerInterface
Definition
ControllerInterface.ice:67
armarx::control::NJointTSVelocityMPControllerInterface
Definition
ControllerInterface.ice:75
armarx::control::NJointTaskspaceAdmittanceControllerInterface
Definition
ControllerInterface.ice:161
armarx::control::NJointTaskspaceCollisionAvoidanceImpedanceControllerInterface
Definition
ControllerInterface.ice:101
armarx::control::NJointTaskspaceCollisionAvoidanceMixedImpedanceVelocityControllerInterface
Definition
ControllerInterface.ice:156
armarx::control::NJointTaskspaceImpedanceControllerInterface
Definition
ControllerInterface.ice:84
armarx::control::NJointTaskspaceMixedImpedanceVelocityControllerInterface
Definition
ControllerInterface.ice:125
armarx::control::NJointTaskspaceObjectCollisionAvoidanceImpedanceControllerInterface
Definition
ControllerInterface.ice:107
armarx::control::NJointTaskspaceSafetyImpedanceControllerInterface
Definition
ControllerInterface.ice:112
armarx::control::NJointTaskspaceVelocityControllerInterface
Definition
ControllerInterface.ice:142
armarx::control::NJointWipingImpMPControllerInterface
Definition
ControllerInterface.ice:98
armarx::control::NJointWipingImpMPControllerInterface::updateAdaptiveConfig
void updateAdaptiveConfig(armarx::aron::data::dto::Dict config)
armarx::control::NJointWipingMixImpVelColMPControllerInterface
Definition
ControllerInterface.ice:84
armarx::control::NJointWipingMixImpVelColMPControllerInterface::updateAdaptiveConfig
void updateAdaptiveConfig(armarx::aron::data::dto::Dict config)
armarx::control::NJointWipingVelMPControllerInterface
Definition
ControllerInterface.ice:91
armarx::control::NJointWipingVelMPControllerInterface::updateAdaptiveConfig
void updateAdaptiveConfig(armarx::aron::data::dto::Dict config)
armarx::control::TSColAvoidCtrlInterface
Definition
ControllerInterface.ice:70
armarx::control::TSCtrlInterface
Definition
ControllerInterface.ice:43
armarx::control::TSMPColAvoidCtrlInterface
Definition
ControllerInterface.ice:46
armarx::control::TSMPCtrlInterface
Definition
ControllerInterface.ice:42
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition
ArmarXTimeserver.cpp:28
control
This file is part of ArmarX.
ControllerInterface.ice
armarx
control
njoint_mp_controller
task_space
ControllerInterface.ice
Generated by
1.13.2