Merge pull request #1133 from wolfmanjm/upstreamedge
[clinton/Smoothieware.git] / src / modules / robot / Planner.cpp
CommitLineData
df27a6a3 1/*
5886a464 2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl) with additions from Sungeun K. Jeon (https://github.com/chamnit/grbl)
4cff3ded
AW
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
df27a6a3 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
4cff3ded
AW
6*/
7
8using namespace std;
9#include <vector>
4dc5513d
MM
10
11#include "mri.h"
12#include "nuts_bolts.h"
13#include "RingBuffer.h"
14#include "Gcode.h"
15#include "Module.h"
16#include "Kernel.h"
4cff3ded
AW
17#include "Block.h"
18#include "Planner.h"
3fceb8eb 19#include "Conveyor.h"
5673fe39 20#include "StepperMotor.h"
61134a65
JM
21#include "Config.h"
22#include "checksumm.h"
23#include "Robot.h"
8d54c34c 24#include "ConfigValue.h"
3d2dd8f9 25#include <StepTicker.h>
61134a65
JM
26
27#include <math.h>
374d0777 28#include <algorithm>
b66fb830 29
8b69c90d 30#define junction_deviation_checksum CHECKSUM("junction_deviation")
44de6ef3 31#define z_junction_deviation_checksum CHECKSUM("z_junction_deviation")
8b69c90d
JM
32#define minimum_planner_speed_checksum CHECKSUM("minimum_planner_speed")
33
edac9072
AW
34// The Planner does the acceleration math for the queue of Blocks ( movements ).
35// It makes sure the speed stays within the configured constraints ( acceleration, junction_deviation, etc )
36// It goes over the list in both direction, every time a block is added, re-doing the math to make sure everything is optimal
4cff3ded 37
1b5776bf
JM
38Planner::Planner()
39{
29e809e0 40 memset(this->previous_unit_vec, 0, sizeof this->previous_unit_vec);
558e170c 41 config_load();
da24d6ae
AW
42}
43
edac9072 44// Configure acceleration
1b5776bf
JM
45void Planner::config_load()
46{
44de6ef3 47 this->junction_deviation = THEKERNEL->config->value(junction_deviation_checksum)->by_default(0.05F)->as_number();
29e809e0 48 this->z_junction_deviation = THEKERNEL->config->value(z_junction_deviation_checksum)->by_default(NAN)->as_number(); // disabled by default
c5fe1787 49 this->minimum_planner_speed = THEKERNEL->config->value(minimum_planner_speed_checksum)->by_default(0.0f)->as_number();
4cff3ded
AW
50}
51
da24d6ae 52
4cff3ded 53// Append a block to the queue, compute it's speed factors
e560f057 54bool Planner::append_block( ActuatorCoordinates &actuator_pos, uint8_t n_motors, float rate_mm_s, float distance, float *unit_vec, float acceleration, float s_value, bool g123)
da947c62 55{
edac9072 56 // Create ( recycle ) a new block
7baa50df 57 Block* block = THECONVEYOR->queue.head_ref();
aab6cbba
AW
58
59 // Direction bits
e560f057 60 bool has_steps = false;
374d0777 61 for (size_t i = 0; i < n_motors; i++) {
ad6a77d1
JM
62 int32_t steps = THEROBOT->actuators[i]->steps_to_target(actuator_pos[i]);
63 // Update current position
6f5d947f
JM
64 if(steps != 0) {
65 THEROBOT->actuators[i]->update_last_milestones(actuator_pos[i], steps);
e560f057 66 has_steps = true;
6f5d947f 67 }
1cf31736 68
ad6a77d1 69 // find direction
558e170c 70 block->direction_bits[i] = (steps < 0) ? 1 : 0;
ad6a77d1 71 // save actual steps in block
78d0e16a
MM
72 block->steps[i] = labs(steps);
73 }
1cf31736 74
e560f057
JM
75 // sometimes even though there is a detectable movement it turns out there are no steps to be had from such a small move
76 if(!has_steps) {
77 block->clear();
78 return false;
79 }
80
81 // info needed by laser
5c749b4a 82 block->s_value = roundf(s_value*(1<<11)); // 1.11 fixed point
e70b6417 83 block->is_g123 = g123;
6f5d947f 84
ad6a77d1
JM
85 // use default JD
86 float junction_deviation = this->junction_deviation;
44de6ef3 87
f41bc212 88 // use either regular junction deviation or z specific and see if a primary axis move
e560f057
JM
89 block->primary_axis = true;
90 if(block->steps[ALPHA_STEPPER] == 0 && block->steps[BETA_STEPPER] == 0) {
f41bc212
JM
91 if(block->steps[GAMMA_STEPPER] != 0) {
92 // z only move
93 if(!isnan(this->z_junction_deviation)) junction_deviation = this->z_junction_deviation;
492cadb7 94
e560f057 95 } else {
f41bc212 96 // is not a primary axis move
492cadb7
JM
97 block->primary_axis= false;
98 #if N_PRIMARY_AXIS > 3
99 for (int i = 3; i < N_PRIMARY_AXIS; ++i) {
100 if(block->steps[i] != 0){
101 block->primary_axis= true;
102 break;
103 }
104 }
105 #endif
106
f41bc212 107 }
c5fe1787
JM
108 }
109
4cff3ded 110 // Max number of steps, for all axes
e560f057 111 auto mi = std::max_element(block->steps.begin(), block->steps.end());
374d0777 112 block->steps_event_count = *mi;
4cff3ded 113 block->millimeters = distance;
aab6cbba 114
3d2dd8f9
JM
115 // check that acceleration/sec does not exceed step frequency
116 float acceleration_per_second = (acceleration * block->steps_event_count) / block->millimeters;
117 if(acceleration_per_second > THEKERNEL->step_ticker->get_frequency()) {
118 // we need to reduce acceleration to keep it under this frequency
119 acceleration= floorf((block->millimeters * THEKERNEL->step_ticker->get_frequency()) / block->steps_event_count);
120 }
121
122 block->acceleration = acceleration; // save in block
123
9db65137 124 // Calculate speed in mm/sec for each axis. No divide by zero due to previous checks.
1b5776bf 125 if( distance > 0.0F ) {
da947c62 126 block->nominal_speed = rate_mm_s; // (mm/s) Always > 0
1598a726 127 block->nominal_rate = block->steps_event_count * rate_mm_s / distance; // (step/s) Always > 0
3d2dd8f9
JM
128 // must be >= 1.0 step/sec otherwise timing is off
129 if(block->nominal_rate < 1.0F) block->nominal_rate= 1.0F;
130
1b5776bf 131 } else {
130275f1
MM
132 block->nominal_speed = 0.0F;
133 block->nominal_rate = 0;
436a2cd1 134 }
aab6cbba 135
4cff3ded
AW
136 // Compute the acceleration rate for the trapezoid generator. Depending on the slope of the line
137 // average travel per step event changes. For a line along one axis the travel per step event
138 // is equal to the travel/step in the particular axis. For a 45 degree line the steppers of both
139 // axes might step for every step event. Travel per step event is then sqrt(travel_x^2+travel_y^2).
1cf31736 140
aab6cbba
AW
141 // Compute maximum allowable entry speed at junction by centripetal acceleration approximation.
142 // Let a circle be tangent to both previous and current path line segments, where the junction
143 // deviation is defined as the distance from the junction to the closest edge of the circle,
144 // colinear with the circle center. The circular segment joining the two paths represents the
145 // path of centripetal acceleration. Solve for max velocity based on max acceleration about the
146 // radius of the circle, defined indirectly by junction deviation. This may be also viewed as
147 // path width or max_jerk in the previous grbl version. This approach does not actually deviate
148 // from path, but used as a robust way to compute cornering speeds, as it takes into account the
149 // nonlinearities of both the junction angle and junction velocity.
4dfd2dce
JM
150
151 // NOTE however it does not take into account independent axis, in most cartesian X and Y and Z are totally independent
152 // and this allows one to stop with little to no decleration in many cases. This is particualrly bad on leadscrew based systems that will skip steps.
8b69c90d 153 float vmax_junction = minimum_planner_speed; // Set default max junction speed
aab6cbba 154
29e809e0 155 // if unit_vec was null then it was not a primary axis move so we skip the junction deviation stuff
7baa50df 156 if (unit_vec != nullptr && !THECONVEYOR->is_queue_empty()) {
e560f057 157 Block *prev_block = THECONVEYOR->queue.item_ref(THECONVEYOR->queue.prev(THECONVEYOR->queue.head_i));
f41bc212 158 float previous_nominal_speed = prev_block->primary_axis ? prev_block->nominal_speed : 0;
e75b3def 159
29e809e0 160 if (junction_deviation > 0.0F && previous_nominal_speed > 0.0F) {
e75b3def
MM
161 // Compute cosine of angle between previous and current path. (prev_unit_vec is negative)
162 // NOTE: Max junction velocity is computed without sin() or acos() by trig half angle identity.
163 float cos_theta = - this->previous_unit_vec[X_AXIS] * unit_vec[X_AXIS]
1b5776bf 164 - this->previous_unit_vec[Y_AXIS] * unit_vec[Y_AXIS]
b5bd71f8
JM
165 - this->previous_unit_vec[Z_AXIS] * unit_vec[Z_AXIS];
166 #if N_PRIMARY_AXIS > 3
167 for (int i = 3; i < N_PRIMARY_AXIS; ++i) {
168 cos_theta -= this->previous_unit_vec[i] * unit_vec[i];
169 }
170 #endif
e75b3def
MM
171
172 // Skip and use default max junction speed for 0 degree acute junction.
173 if (cos_theta < 0.95F) {
29e809e0 174 vmax_junction = std::min(previous_nominal_speed, block->nominal_speed);
e75b3def
MM
175 // Skip and avoid divide by zero for straight junctions at 180 degrees. Limit to min() of nominal speeds.
176 if (cos_theta > -0.95F) {
177 // Compute maximum junction velocity based on maximum acceleration and junction deviation
178 float sin_theta_d2 = sqrtf(0.5F * (1.0F - cos_theta)); // Trig half angle identity. Always positive.
29e809e0 179 vmax_junction = std::min(vmax_junction, sqrtf(acceleration * junction_deviation * sin_theta_d2 / (1.0F - sin_theta_d2)));
e75b3def
MM
180 }
181 }
aab6cbba 182 }
4cff3ded 183 }
aab6cbba 184 block->max_entry_speed = vmax_junction;
1cf31736 185
8b69c90d 186 // Initialize block entry speed. Compute based on deceleration to user-defined minimum_planner_speed.
c9cc5e06 187 float v_allowable = max_allowable_speed(-acceleration, minimum_planner_speed, block->millimeters);
29e809e0 188 block->entry_speed = std::min(vmax_junction, v_allowable);
aab6cbba
AW
189
190 // Initialize planner efficiency flags
191 // Set flag if block will always reach maximum junction speed regardless of entry/exit speeds.
192 // If a block can de/ac-celerate from nominal speed to zero within the length of the block, then
193 // the current block and next block junction speeds are guaranteed to always be at their maximum
194 // junction speeds in deceleration and acceleration, respectively. This is due to how the current
195 // block nominal speed limits both the current and next maximum junction speeds. Hence, in both
196 // the reverse and forward planners, the corresponding block junction speed will always be at the
197 // the maximum junction speed and may always be ignored for any speed reduction checks.
198 if (block->nominal_speed <= v_allowable) { block->nominal_length_flag = true; }
199 else { block->nominal_length_flag = false; }
2134bcf2
MM
200
201 // Always calculate trapezoid for new block
202 block->recalculate_flag = true;
1cf31736 203
aab6cbba 204 // Update previous path unit_vector and nominal speed
c8bac202 205 if(unit_vec != nullptr) {
ad6a77d1 206 memcpy(previous_unit_vec, unit_vec, sizeof(previous_unit_vec)); // previous_unit_vec[] = unit_vec[]
e560f057 207 } else {
ad6a77d1 208 memset(previous_unit_vec, 0, sizeof(previous_unit_vec));
c8bac202 209 }
1cf31736 210
df27a6a3 211 // Math-heavy re-computing of the whole queue to take the new
4cff3ded 212 this->recalculate();
1cf31736 213
df27a6a3 214 // The block can now be used
433d636f 215 block->ready();
2134bcf2 216
7baa50df 217 THECONVEYOR->queue_head_block();
6f5d947f
JM
218
219 return true;
4cff3ded
AW
220}
221
1b5776bf
JM
222void Planner::recalculate()
223{
7baa50df 224 Conveyor::Queue_t &queue = THECONVEYOR->queue;
4dc5513d 225
a617ac35 226 unsigned int block_index;
4cff3ded 227
391bc610
MM
228 Block* previous;
229 Block* current;
391bc610 230
a617ac35
MM
231 /*
232 * a newly added block is decel limited
233 *
234 * we find its max entry speed given its exit speed
235 *
d30d9611
MM
236 * for each block, walking backwards in the queue:
237 *
a617ac35
MM
238 * if max entry speed == current entry speed
239 * then we can set recalculate to false, since clearly adding another block didn't allow us to enter faster
d30d9611
MM
240 * and thus we don't need to check entry speed for this block any more
241 *
242 * once we find an accel limited block, we must find the max exit speed and walk the queue forwards
a617ac35 243 *
d30d9611 244 * for each block, walking forwards in the queue:
a617ac35
MM
245 *
246 * given the exit speed of the previous block and our own max entry speed
247 * we can tell if we're accel or decel limited (or coasting)
248 *
249 * if prev_exit > max_entry
d30d9611 250 * then we're still decel limited. update previous trapezoid with our max entry for prev exit
a617ac35 251 * if max_entry >= prev_exit
d30d9611 252 * then we're accel limited. set recalculate to false, work out max exit speed
a617ac35 253 *
d30d9611 254 * finally, work out trapezoid for the final (and newest) block.
a617ac35
MM
255 */
256
257 /*
258 * Step 1:
259 * For each block, given the exit speed and acceleration, find the maximum entry speed
260 */
261
262 float entry_speed = minimum_planner_speed;
263
264 block_index = queue.head_i;
265 current = queue.item_ref(block_index);
266
1b5776bf
JM
267 if (!queue.is_empty()) {
268 while ((block_index != queue.tail_i) && current->recalculate_flag) {
a617ac35 269 entry_speed = current->reverse_pass(entry_speed);
391bc610 270
a617ac35
MM
271 block_index = queue.prev(block_index);
272 current = queue.item_ref(block_index);
2134bcf2 273 }
13e4a3f9 274
d30d9611
MM
275 /*
276 * Step 2:
277 * now current points to either tail or first non-recalculate block
278 * and has not had its reverse_pass called
121844b7 279 * or its calculate_trapezoid
d30d9611
MM
280 * entry_speed is set to the *exit* speed of current.
281 * each block from current to head has its entry speed set to its max entry speed- limited by decel or nominal_rate
282 */
2134bcf2 283
a617ac35 284 float exit_speed = current->max_exit_speed();
4cff3ded 285
1b5776bf 286 while (block_index != queue.head_i) {
a617ac35
MM
287 previous = current;
288 block_index = queue.next(block_index);
289 current = queue.item_ref(block_index);
290
291 // we pass the exit speed of the previous block
292 // so this block can decide if it's accel or decel limited and update its fields as appropriate
293 exit_speed = current->forward_pass(exit_speed);
2134bcf2 294
a617ac35
MM
295 previous->calculate_trapezoid(previous->entry_speed, current->entry_speed);
296 }
4cff3ded 297 }
a617ac35 298
d30d9611
MM
299 /*
300 * Step 3:
301 * work out trapezoid for final (and newest) block
302 */
303
a617ac35
MM
304 // now current points to the head item
305 // which has not had calculate_trapezoid run yet
306 current->calculate_trapezoid(current->entry_speed, minimum_planner_speed);
4cff3ded 307}
aab6cbba 308
a617ac35 309
aab6cbba
AW
310// Calculates the maximum allowable speed at this point when you must be able to reach target_velocity using the
311// acceleration within the allotted distance.
1b5776bf
JM
312float Planner::max_allowable_speed(float acceleration, float target_velocity, float distance)
313{
1598a726
JM
314 // Was acceleration*60*60*distance, in case this breaks, but here we prefer to use seconds instead of minutes
315 return(sqrtf(target_velocity * target_velocity - 2.0F * acceleration * distance));
aab6cbba
AW
316}
317
318