ros2_control - rolling
Loading...
Searching...
No Matches
joint_limits.hpp
1// Copyright 2020 PAL Robotics S.L.
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 JOINT_LIMITS__JOINT_LIMITS_HPP_
18#define JOINT_LIMITS__JOINT_LIMITS_HPP_
19
20#include <limits>
21#include <sstream>
22#include <string>
23
24namespace joint_limits
25{
35{
37 : min_position(std::numeric_limits<double>::quiet_NaN()),
38 max_position(std::numeric_limits<double>::quiet_NaN()),
39 max_velocity(std::numeric_limits<double>::quiet_NaN()),
40 max_acceleration(std::numeric_limits<double>::quiet_NaN()),
41 max_deceleration(std::numeric_limits<double>::quiet_NaN()),
42 max_jerk(std::numeric_limits<double>::quiet_NaN()),
43 max_effort(std::numeric_limits<double>::quiet_NaN()),
44 has_position_limits(false),
45 has_velocity_limits(false),
46 has_acceleration_limits(false),
47 has_deceleration_limits(false),
48 has_jerk_limits(false),
49 has_effort_limits(false),
50 angle_wraparound(false)
51 {
52 }
53
54 double min_position;
55 double max_position;
56 double max_velocity;
57 double max_acceleration;
58 double max_deceleration;
59 double max_jerk;
60 double max_effort;
61
62 bool has_position_limits;
63 bool has_velocity_limits;
64 bool has_acceleration_limits;
65 bool has_deceleration_limits;
66 bool has_jerk_limits;
67 bool has_effort_limits;
68 bool angle_wraparound;
69
70 void disable_all_limits()
71 {
72 has_position_limits = false;
73 has_velocity_limits = false;
74 has_acceleration_limits = false;
75 has_deceleration_limits = false;
76 has_jerk_limits = false;
77 has_effort_limits = false;
78 min_position = -std::numeric_limits<double>::max();
79 max_position = std::numeric_limits<double>::max();
80 max_velocity = std::numeric_limits<double>::max();
81 max_acceleration = std::numeric_limits<double>::max();
82 max_deceleration = std::numeric_limits<double>::max();
83 max_jerk = std::numeric_limits<double>::max();
84 max_effort = std::numeric_limits<double>::max();
85 }
86
87 std::string to_string() const
88 {
89 std::stringstream ss_output;
90
91 ss_output << " has position limits: " << (has_position_limits ? "true" : "false") << " ["
92 << min_position << ", " << max_position << "]\n";
93 ss_output << " has velocity limits: " << (has_velocity_limits ? "true" : "false") << " ["
94 << max_velocity << "]\n";
95 ss_output << " has acceleration limits: " << (has_acceleration_limits ? "true" : "false")
96 << " [" << max_acceleration << "]\n";
97 ss_output << " has deceleration limits: " << (has_deceleration_limits ? "true" : "false")
98 << " [" << max_deceleration << "]\n";
99 ss_output << " has jerk limits: " << (has_jerk_limits ? "true" : "false") << " [" << max_jerk
100 << "]\n";
101 ss_output << " has effort limits: " << (has_effort_limits ? "true" : "false") << " ["
102 << max_effort << "]\n";
103 ss_output << " angle wraparound: " << (angle_wraparound ? "true" : "false");
104
105 return ss_output.str();
106 }
107};
108
130{
132 : min_position(std::numeric_limits<double>::quiet_NaN()),
133 max_position(std::numeric_limits<double>::quiet_NaN()),
134 k_position(std::numeric_limits<double>::quiet_NaN()),
135 k_velocity(std::numeric_limits<double>::quiet_NaN())
136 {
137 }
138
139 double min_position;
140 double max_position;
141 double k_position;
142 double k_velocity;
143
144 std::string to_string() const
145 {
146 std::stringstream ss_output;
147
148 ss_output << " soft position limits: "
149 << "[" << min_position << ", " << max_position << "]\n";
150
151 ss_output << " k-position: "
152 << "[" << k_position << "]\n";
153
154 ss_output << " k-velocity: "
155 << "[" << k_velocity << "]\n";
156
157 return ss_output.str();
158 }
159};
160
161} // namespace joint_limits
162
163#endif // JOINT_LIMITS__JOINT_LIMITS_HPP_
Definition data_structures.hpp:39
Definition joint_limits.hpp:35
Definition joint_limits.hpp:130