ros2_control - humble
Loading...
Searching...
No Matches
admittance_controller.hpp
1// Copyright (c) 2022, PickNik, Inc.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
16
17#ifndef ADMITTANCE_CONTROLLER__ADMITTANCE_CONTROLLER_HPP_
18#define ADMITTANCE_CONTROLLER__ADMITTANCE_CONTROLLER_HPP_
19
20#include <chrono>
21#include <memory>
22#include <string>
23#include <vector>
24
25// include generated parameter library
26#include "admittance_controller_parameters.hpp"
27
28#include "admittance_controller/admittance_rule.hpp"
29#include "admittance_controller/visibility_control.h"
30#include "control_msgs/msg/admittance_controller_state.hpp"
31#include "controller_interface/chainable_controller_interface.hpp"
32#include "geometry_msgs/msg/pose_stamped.hpp"
33#include "geometry_msgs/msg/transform_stamped.hpp"
34#include "geometry_msgs/msg/wrench_stamped.hpp"
35#include "hardware_interface/types/hardware_interface_type_values.hpp"
36#include "pluginlib/class_loader.hpp"
37#include "rclcpp/duration.hpp"
38#include "rclcpp/time.hpp"
39#include "rclcpp_lifecycle/node_interfaces/lifecycle_node_interface.hpp"
40#include "rclcpp_lifecycle/state.hpp"
41#include "realtime_tools/realtime_buffer.hpp"
42#include "realtime_tools/realtime_publisher.hpp"
43#include "semantic_components/force_torque_sensor.hpp"
44
45#include "trajectory_msgs/msg/joint_trajectory.hpp"
46
48{
49using ControllerStateMsg = control_msgs::msg::AdmittanceControllerState;
50
52{
53public:
54 ADMITTANCE_CONTROLLER_PUBLIC
55 controller_interface::CallbackReturn on_init() override;
56
58
62 ADMITTANCE_CONTROLLER_PUBLIC
64
66
70 ADMITTANCE_CONTROLLER_PUBLIC
72
73 ADMITTANCE_CONTROLLER_PUBLIC
74 controller_interface::CallbackReturn on_configure(
75 const rclcpp_lifecycle::State & previous_state) override;
76
77 ADMITTANCE_CONTROLLER_PUBLIC
78 controller_interface::CallbackReturn on_activate(
79 const rclcpp_lifecycle::State & previous_state) override;
80
81 ADMITTANCE_CONTROLLER_PUBLIC
82 controller_interface::CallbackReturn on_deactivate(
83 const rclcpp_lifecycle::State & previous_state) override;
84
85 ADMITTANCE_CONTROLLER_PUBLIC
86 controller_interface::CallbackReturn on_cleanup(
87 const rclcpp_lifecycle::State & previous_state) override;
88
89 ADMITTANCE_CONTROLLER_PUBLIC
90 controller_interface::CallbackReturn on_error(
91 const rclcpp_lifecycle::State & previous_state) override;
92
93 ADMITTANCE_CONTROLLER_PUBLIC
94 controller_interface::return_type update_and_write_commands(
95 const rclcpp::Time & time, const rclcpp::Duration & period) override;
96
97protected:
98 std::vector<hardware_interface::CommandInterface> on_export_reference_interfaces() override;
99
100 controller_interface::return_type update_reference_from_subscribers() override;
101
102 size_t num_joints_ = 0;
103 std::vector<std::string> command_joint_names_;
104
105 // The interfaces are defined as the types in 'allowed_interface_types_' member.
106 // For convenience, for each type the interfaces are ordered so that i-th position
107 // matches i-th index in joint_names_
108 template <typename T>
109 using InterfaceReferences = std::vector<std::vector<std::reference_wrapper<T>>>;
110
111 InterfaceReferences<hardware_interface::LoanedCommandInterface> joint_command_interface_;
112 InterfaceReferences<hardware_interface::LoanedStateInterface> joint_state_interface_;
113
114 bool has_position_state_interface_ = false;
115 bool has_velocity_state_interface_ = false;
116 bool has_acceleration_state_interface_ = false;
117 bool has_position_command_interface_ = false;
118 bool has_velocity_command_interface_ = false;
119 bool has_acceleration_command_interface_ = false;
120 bool has_effort_command_interface_ = false;
121
122 // To reduce number of variables and to make the code shorter the interfaces are ordered in types
123 // as the following constants
124 const std::vector<std::string> allowed_interface_types_ = {
127
128 // internal reference values
129 const std::vector<std::string> allowed_reference_interfaces_types_ = {
131 std::vector<std::reference_wrapper<double>> position_reference_;
132 std::vector<std::reference_wrapper<double>> velocity_reference_;
133
134 // Admittance rule and dependent variables;
135 std::unique_ptr<admittance_controller::AdmittanceRule> admittance_;
136
137 // force torque sensor
138 std::unique_ptr<semantic_components::ForceTorqueSensor> force_torque_sensor_;
139
140 // ROS subscribers
141 rclcpp::Subscription<trajectory_msgs::msg::JointTrajectoryPoint>::SharedPtr
142 input_joint_command_subscriber_;
143 rclcpp::Publisher<control_msgs::msg::AdmittanceControllerState>::SharedPtr s_publisher_;
144
145 // admittance parameters
146 std::shared_ptr<admittance_controller::ParamListener> parameter_handler_;
147
148 // ROS messages
149 std::shared_ptr<trajectory_msgs::msg::JointTrajectoryPoint> joint_command_msg_;
150
151 // real-time buffer
153 input_joint_command_;
154 std::unique_ptr<realtime_tools::RealtimePublisher<ControllerStateMsg>> state_publisher_;
155
156 trajectory_msgs::msg::JointTrajectoryPoint last_commanded_;
157 trajectory_msgs::msg::JointTrajectoryPoint last_reference_;
158
159 // control loop data
160 // reference_: reference value read by the controller
161 // joint_state_: current joint readings from the hardware
162 // reference_admittance_: reference value used by the controller after the admittance values are
163 // applied ft_values_: values read from the force torque sensor
164 trajectory_msgs::msg::JointTrajectoryPoint reference_, joint_state_, reference_admittance_;
165 geometry_msgs::msg::Wrench ft_values_;
166
172 trajectory_msgs::msg::JointTrajectoryPoint & state_current,
173 geometry_msgs::msg::Wrench & ft_values);
174
179 void read_state_reference_interfaces(trajectory_msgs::msg::JointTrajectoryPoint & state);
180
184 void write_state_to_hardware(const trajectory_msgs::msg::JointTrajectoryPoint & state_command);
185};
186
187} // namespace admittance_controller
188
189#endif // ADMITTANCE_CONTROLLER__ADMITTANCE_CONTROLLER_HPP_
Definition admittance_controller.hpp:52
std::vector< hardware_interface::CommandInterface > on_export_reference_interfaces() override
Definition admittance_controller.cpp:105
ADMITTANCE_CONTROLLER_PUBLIC controller_interface::return_type update_and_write_commands(const rclcpp::Time &time, const rclcpp::Duration &period) override
Execute calculations of the controller and update command interfaces.
Definition admittance_controller.cpp:399
controller_interface::return_type update_reference_from_subscribers() override
Update reference from input topics when not in chained mode.
Definition admittance_controller.cpp:373
ADMITTANCE_CONTROLLER_PUBLIC controller_interface::InterfaceConfiguration command_interface_configuration() const override
Export configuration of required state interfaces.
Definition admittance_controller.cpp:64
void read_state_from_hardware(trajectory_msgs::msg::JointTrajectoryPoint &state_current, geometry_msgs::msg::Wrench &ft_values)
Read values from hardware interfaces and set corresponding fields of state_current and ft_values.
Definition admittance_controller.cpp:474
void write_state_to_hardware(const trajectory_msgs::msg::JointTrajectoryPoint &state_command)
Write values from state_command to claimed hardware interfaces.
Definition admittance_controller.cpp:532
ADMITTANCE_CONTROLLER_PUBLIC controller_interface::CallbackReturn on_init() override
Extending interface with initialization method which is individual for each controller.
Definition admittance_controller.cpp:34
void read_state_reference_interfaces(trajectory_msgs::msg::JointTrajectoryPoint &state)
Set fields of state_reference with values from controllers exported position and velocity references.
Definition admittance_controller.cpp:560
ADMITTANCE_CONTROLLER_PUBLIC controller_interface::InterfaceConfiguration state_interface_configuration() const override
Export configuration of required state interfaces.
Definition admittance_controller.cpp:82
Definition chainable_controller_interface.hpp:35
Definition realtime_buffer.hpp:44
Definition admittance_controller.hpp:48
constexpr char HW_IF_ACCELERATION[]
Constant defining acceleration interface.
Definition hardware_interface_type_values.hpp:25
constexpr char HW_IF_VELOCITY[]
Constant defining velocity interface.
Definition hardware_interface_type_values.hpp:23
constexpr char HW_IF_POSITION[]
Constant defining position interface.
Definition hardware_interface_type_values.hpp:21
Configuring what command/state interfaces to claim.
Definition controller_interface_base.hpp:56