Line data Source code
1 : #include "Kinematics.hpp"
2 :
3 : #include <iostream>
4 :
5 : namespace HLR
6 : {
7 : namespace Kinematics
8 : {
9 : using IKSolution = std::pair<std::optional<Matrix<double, 4, 1>>,
10 : std::optional<Matrix<double, 4, 1>>>;
11 :
12 180321 : std::optional<Matrix<double, 3, 4>> Kinematics::forward(
13 : Matrix<double, 4, 1> angles)
14 : {
15 901605 : for (std::size_t i = 0; i < angles.get_m(); ++i)
16 : {
17 721284 : if (!std::isfinite(angles[i][0]))
18 : {
19 0 : return std::nullopt;
20 : }
21 : }
22 :
23 : // Set theta 3 always be horizontal.
24 180321 : angles[3][0] = 90 - angles[1][0] - angles[2][0];
25 :
26 180321 : if (!Kinematics::angles_within_limits(angles))
27 : {
28 12082 : return std::nullopt;
29 : }
30 :
31 : // Convert angles to radians.
32 168239 : angles *= (pi / 180);
33 :
34 : /*
35 : * keep names short because the formules below are unreadable with long
36 : * variable names.
37 : * p are the end positions of each link.
38 : * a are the thetas in radians
39 : * l are the joint lengths
40 : */
41 168239 : Matrix<double, 3, 4> p;
42 168239 : const auto& a = angles;
43 168239 : const auto& l = joint_lengths;
44 :
45 168239 : p[0][0] = 0.0;
46 168239 : p[1][0] = 0.0;
47 168239 : p[2][0] = 0.0;
48 :
49 168239 : p[0][1] = p[0][0] + (l[0][0] * std::sin(a[1][0]) * std::cos(a[0][0]));
50 168239 : p[1][1] = p[1][0] + (l[0][0] * std::cos(a[1][0]));
51 168239 : p[2][1] = p[2][0] + (l[0][0] * std::sin(a[1][0]) * std::sin(a[0][0]));
52 :
53 168239 : p[0][2] =
54 168239 : p[0][1] + (l[1][0] * std::sin(a[1][0] + a[2][0]) * std::cos(a[0][0]));
55 168239 : p[1][2] = p[1][1] + (l[1][0] * std::cos(a[1][0] + a[2][0]));
56 168239 : p[2][2] =
57 168239 : p[2][1] + (l[1][0] * std::sin(a[1][0] + a[2][0]) * std::sin(a[0][0]));
58 :
59 168239 : p[0][3] = p[0][2] + (l[2][0] * std::cos(a[0][0]));
60 168239 : p[1][3] = p[1][2];
61 168239 : p[2][3] = p[2][2] + (l[2][0] * std::sin(a[0][0]));
62 :
63 168239 : return p;
64 : }
65 :
66 9 : IKSolution Kinematics::jacobian_inverse(Matrix<double, 4, 1> current_angles,
67 : const Matrix<double, 3, 1>& goal)
68 : {
69 9 : IKSolution solutions;
70 :
71 : // Check if solution is in worksapce.
72 : static const double max_arm_length =
73 : joint_lengths[0][0] + joint_lengths[1][0] + joint_lengths[2][0];
74 9 : if (max_arm_length - goal.get_magnitude() <= 0)
75 : {
76 3 : return solutions;
77 : }
78 :
79 : // alias variables to the same names they have in the documentation.
80 6 : const auto& g = goal;
81 6 : auto new_angles = current_angles;
82 6 : double beta = 0.1;
83 :
84 6 : std::size_t i = 0;
85 6 : auto e_opt = forward(new_angles);
86 6 : auto e_opt_new = e_opt;
87 6 : if (!e_opt.has_value())
88 : {
89 1 : return solutions;
90 : }
91 5 : auto e = e_opt.value().template slice<0, 3, 3, 1>();
92 5 : auto e_new = e;
93 :
94 360591 : while ((g - e).get_magnitude() > precision && ++i <= max_iterations)
95 : {
96 180293 : const auto j_i_opt = compute_jacobian(current_angles).inverse();
97 180293 : if (!j_i_opt.has_value())
98 : {
99 0 : break;
100 : }
101 :
102 180293 : const auto& j_i = j_i_opt.value();
103 180293 : const auto d_e = beta * (g - e);
104 180293 : const auto d_angle = j_i * d_e;
105 180293 : new_angles = current_angles + d_angle.template slice<0, 0, 4, 1>();
106 180293 : new_angles[3][0] = (pi / 2.0) - new_angles[1][0] - new_angles[2][0];
107 180293 : e_opt_new = forward(new_angles);
108 :
109 192364 : if (!e_opt_new.has_value())
110 : {
111 12071 : beta /= 2.0;
112 12071 : continue;
113 : }
114 :
115 168222 : e_new = e_opt_new.value().template slice<0, 3, 3, 1>();
116 :
117 168222 : if ((e_new - e + d_e).get_magnitude() > deviation)
118 : {
119 25539 : beta /= 2.0;
120 : }
121 : else
122 : {
123 142683 : beta *= 1.2;
124 142683 : e = e_new;
125 142683 : current_angles = new_angles;
126 : }
127 : }
128 :
129 5 : if ((g - e).get_magnitude() <= precision)
130 : {
131 3 : solutions.first = new_angles;
132 : }
133 :
134 5 : return solutions;
135 : }
136 :
137 8 : IKSolution Kinematics::analytical_inverse(const Matrix<double, 3, 1>& goal)
138 : {
139 8 : IKSolution solutions;
140 :
141 : // Check if solution is in worksapce.
142 : static const double max_arm_length =
143 : joint_lengths[0][0] + joint_lengths[1][0] + joint_lengths[2][0];
144 8 : if (max_arm_length - goal.get_magnitude() <= 0)
145 : {
146 3 : return solutions;
147 : }
148 :
149 5 : solutions.first = Matrix<double, 4, 1>();
150 5 : solutions.second = Matrix<double, 4, 1>();
151 :
152 5 : const auto& l = joint_lengths;
153 :
154 5 : auto& s_1 = solutions.first.value();
155 5 : auto& s_2 = solutions.second.value();
156 :
157 5 : double theta_0 = std::atan2(goal[2][0], goal[0][0]);
158 5 : double x = std::hypot(goal[2][0], goal[0][0]) - l[2][0];
159 5 : double y = goal[1][0];
160 :
161 : double cos_theta_2 =
162 5 : ((x * x) + (y * y) - (l[0][0] * l[0][0]) - (l[1][0] * l[1][0]))
163 5 : / (2 * l[0][0] * l[1][0]);
164 :
165 5 : s_1[2][0] =
166 5 : std::atan2(std::sqrt(1 - cos_theta_2 * cos_theta_2), cos_theta_2);
167 5 : s_2[2][0] =
168 5 : std::atan2(-std::sqrt(1 - cos_theta_2 * cos_theta_2), cos_theta_2);
169 :
170 10 : s_1[1][0] = std::atan2(x, y)
171 10 : - std::atan2(l[1][0] * std::sin(s_1[2][0]),
172 10 : l[0][0] + l[1][0] * std::cos(s_1[2][0]));
173 10 : s_2[1][0] = std::atan2(x, y)
174 10 : - std::atan2(l[1][0] * std::sin(s_2[2][0]),
175 10 : l[0][0] + l[1][0] * std::cos(s_2[2][0]));
176 :
177 5 : s_1[3][0] = (pi / 2.0) - s_1[1][0] - s_1[2][0];
178 5 : s_2[3][0] = (pi / 2.0) - s_2[1][0] - s_2[2][0];
179 :
180 5 : s_1[0][0] = theta_0;
181 5 : s_2[0][0] = theta_0;
182 :
183 5 : s_1 *= (180.0 / pi);
184 5 : s_2 *= (180.0 / pi);
185 :
186 5 : const auto fk1 = forward(s_1);
187 5 : const auto fk2 = forward(s_2);
188 :
189 10 : if (!fk1.has_value()
190 5 : || (fk1.value().template slice<0, 3, 3, 1>() - goal).get_magnitude()
191 : > precision)
192 : {
193 2 : solutions.first = std::nullopt;
194 : }
195 :
196 10 : if (!fk2.has_value()
197 5 : || (fk2.value().template slice<0, 3, 3, 1>() - goal).get_magnitude()
198 : > precision)
199 : {
200 5 : solutions.second = std::nullopt;
201 : }
202 :
203 5 : return solutions;
204 : }
205 :
206 180293 : Matrix<double, 3, 3> Kinematics::compute_jacobian(
207 : const Matrix<double, 4, 1>& current_angles)
208 : {
209 : // alias current angles to a and joint lengths l.
210 180293 : auto a = current_angles * (pi / 180);
211 180293 : const auto& l = joint_lengths;
212 180293 : Matrix<double, 3, 3> jacobian;
213 :
214 180293 : jacobian[0][0] =
215 180293 : (l[0][0] * std::sin(a[1][0]) + l[1][0] * std::sin(a[1][0] + a[2][0]))
216 180293 : * -std::sin(a[0][0]);
217 180293 : jacobian[0][1] =
218 180293 : (l[0][0] * std::cos(a[1][0]) + l[1][0] * std::cos(a[1][0] + a[2][0]))
219 180293 : * std::cos(a[0][0]);
220 180293 : jacobian[0][2] = l[1][0] * std::cos(a[1][0] + a[2][0]) * std::cos(a[0][0]);
221 :
222 180293 : jacobian[1][0] = 0;
223 180293 : jacobian[1][1] =
224 180293 : -l[0][0] * std::sin(a[1][0]) - l[1][0] * std::sin(a[1][0] + a[2][0]);
225 180293 : jacobian[1][2] = -l[1][0] * std::sin(a[1][0] + a[2][0]);
226 :
227 180293 : jacobian[2][0] =
228 180293 : (l[0][0] * std::sin(a[1][0]) + l[1][0] * std::sin(a[1][0] + a[2][0]))
229 180293 : * std::cos(a[0][0]);
230 180293 : jacobian[2][1] =
231 180293 : (l[0][0] * std::cos(a[1][0]) + l[1][0] * std::cos(a[1][0] + a[2][0]))
232 180293 : * std::sin(a[0][0]);
233 180293 : jacobian[2][2] = l[1][0] * std::cos(a[1][0] + a[2][0]) * std::sin(a[0][0]);
234 :
235 180293 : return jacobian;
236 : }
237 :
238 180321 : bool Kinematics::angles_within_limits(const Matrix<double, 4, 1>& angles)
239 : {
240 877435 : for (std::size_t i = 0; i < angles.get_m(); ++i)
241 : {
242 1418392 : if (servo_limits[i][0] > angles[i][0]
243 709196 : || servo_limits[i][1] < angles[i][0])
244 : {
245 12082 : return false;
246 : }
247 : }
248 :
249 168239 : return true;
250 : }
251 :
252 : } // namespace Kinematics
253 3 : } // namespace HLR
|