orwell 0.0.0
CompliantController.hxx
1/*
2 Copyright (c) Tobias Löw
3 Written by Tobias Löw <https://tobiloew.ch>
4
5 This file is part of orwell.
6
7 gafro is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 3 as
9 published by the Free Software Foundation.
10
11 gafro is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with gafro. If not, see <http://www.gnu.org/licenses/>.
18*/
19
20#pragma once
21
22#include <orwell/torque/CompliantController.hpp>
23
24namespace orwell
25{
26
27 template <int dof>
28 CompliantController<dof>::CompliantController(const sackmesser::Interface::Ptr &interface, const std::string &)
29 : TorqueController<dof>(interface, "controller_manager/torque_controller/compliant_controller/")
30 {}
31
32 template <int dof>
34
35 template <int dof>
36 Eigen::Vector<double, dof> CompliantController<dof>::computeCommand()
37 {
38 return Eigen::Vector<double, dof>::Zero();
39 }
40
41} // namespace orwell
42
43REGISTER_CLASS(orwell::TorqueController<7>, orwell::CompliantController<7>, "compliant_controller")
fully compliant controller for kinesthetic control
Eigen::Vector< double, dof > computeCommand()
computes the control command, essentially only considers gravity compensation
CompliantController(const sackmesser::Interface::Ptr &interface, const std::string &name)
loads configuration parameters
Controller using torque commands.