Move most handling of steps from arm_solution,Robot,Planner to StepperMotor
[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"
b66fb830 20
8b69c90d
JM
21#define acceleration_checksum CHECKSUM("acceleration")
22#define max_jerk_checksum CHECKSUM("max_jerk")
23#define junction_deviation_checksum CHECKSUM("junction_deviation")
24#define minimum_planner_speed_checksum CHECKSUM("minimum_planner_speed")
25
edac9072
AW
26// The Planner does the acceleration math for the queue of Blocks ( movements ).
27// It makes sure the speed stays within the configured constraints ( acceleration, junction_deviation, etc )
28// 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
AW
29
30Planner::Planner(){
1cf31736 31 clear_vector_float(this->previous_unit_vec);
4cff3ded
AW
32 this->has_deleted_block = false;
33}
34
35void Planner::on_module_loaded(){
476dcb96 36 register_for_event(ON_CONFIG_RELOAD);
da24d6ae
AW
37 this->on_config_reload(this);
38}
39
edac9072 40// Configure acceleration
da24d6ae 41void Planner::on_config_reload(void* argument){
1ad23cd3
MM
42 this->acceleration = THEKERNEL->config->value(acceleration_checksum )->by_default(100 )->as_number() * 60 * 60; // Acceleration is in mm/minute^2, see https://github.com/grbl/grbl/commit/9141ad282540eaa50a41283685f901f29c24ddbd#planner.c
43 this->junction_deviation = THEKERNEL->config->value(junction_deviation_checksum )->by_default(0.05f)->as_number();
8b69c90d 44 this->minimum_planner_speed = THEKERNEL->config->value(minimum_planner_speed_checksum )->by_default(0.0f)->as_number();
4cff3ded
AW
45}
46
da24d6ae 47
4cff3ded 48// Append a block to the queue, compute it's speed factors
78d0e16a 49void Planner::append_block( float actuator_pos[], float feed_rate, float distance, float deltas[] ){
3add9a23 50
edac9072 51 // Create ( recycle ) a new block
2134bcf2 52 Block* block = THEKERNEL->conveyor->queue.head_ref();
aab6cbba
AW
53
54 // Direction bits
df27a6a3 55 block->direction_bits = 0;
78d0e16a
MM
56 for (int i = 0; i < 3; i++)
57 {
58 int steps = THEKERNEL->robot->actuators[i]->steps_to_target(actuator_pos[i]);
1cf31736 59
78d0e16a
MM
60 if (steps < 0)
61 block->direction_bits |= (1<<i);
62
63 block->steps[i] = labs(steps);
64 }
1cf31736 65
4cff3ded
AW
66 // Max number of steps, for all axes
67 block->steps_event_count = max( block->steps[ALPHA_STEPPER], max( block->steps[BETA_STEPPER], block->steps[GAMMA_STEPPER] ) );
68
4cff3ded 69 block->millimeters = distance;
1cf31736 70 float inverse_millimeters = 0.0F;
95b4885b 71 if( distance > 0 ){ inverse_millimeters = 1.0F/distance; }
aab6cbba
AW
72
73 // Calculate speed in mm/minute for each axis. No divide by zero due to previous checks.
74 // NOTE: Minimum stepper speed is limited by MINIMUM_STEPS_PER_MINUTE in stepper.c
1ad23cd3 75 float inverse_minute = feed_rate * inverse_millimeters;
df27a6a3 76 if( distance > 0 ){
436a2cd1
AW
77 block->nominal_speed = block->millimeters * inverse_minute; // (mm/min) Always > 0
78 block->nominal_rate = ceil(block->steps_event_count * inverse_minute); // (step/min) Always > 0
79 }else{
80 block->nominal_speed = 0;
81 block->nominal_rate = 0;
82 }
aab6cbba 83
4cff3ded
AW
84 // Compute the acceleration rate for the trapezoid generator. Depending on the slope of the line
85 // average travel per step event changes. For a line along one axis the travel per step event
86 // is equal to the travel/step in the particular axis. For a 45 degree line the steppers of both
87 // axes might step for every step event. Travel per step event is then sqrt(travel_x^2+travel_y^2).
88 // To generate trapezoids with contant acceleration between blocks the rate_delta must be computed
89 // specifically for each line to compensate for this phenomenon:
aab6cbba 90 // Convert universal acceleration for direction-dependent stepper rate change parameter
314ab8f7 91 block->rate_delta = (float)( ( block->steps_event_count*inverse_millimeters * this->acceleration ) / ( THEKERNEL->stepper->acceleration_ticks_per_second * 60 ) ); // (step/min/acceleration_tick)
4464301d 92
aab6cbba 93 // Compute path unit vector
1ad23cd3 94 float unit_vec[3];
aab6cbba
AW
95 unit_vec[X_AXIS] = deltas[X_AXIS]*inverse_millimeters;
96 unit_vec[Y_AXIS] = deltas[Y_AXIS]*inverse_millimeters;
97 unit_vec[Z_AXIS] = deltas[Z_AXIS]*inverse_millimeters;
1cf31736 98
aab6cbba
AW
99 // Compute maximum allowable entry speed at junction by centripetal acceleration approximation.
100 // Let a circle be tangent to both previous and current path line segments, where the junction
101 // deviation is defined as the distance from the junction to the closest edge of the circle,
102 // colinear with the circle center. The circular segment joining the two paths represents the
103 // path of centripetal acceleration. Solve for max velocity based on max acceleration about the
104 // radius of the circle, defined indirectly by junction deviation. This may be also viewed as
105 // path width or max_jerk in the previous grbl version. This approach does not actually deviate
106 // from path, but used as a robust way to compute cornering speeds, as it takes into account the
107 // nonlinearities of both the junction angle and junction velocity.
8b69c90d 108 float vmax_junction = minimum_planner_speed; // Set default max junction speed
aab6cbba 109
e75b3def
MM
110 if (!THEKERNEL->conveyor->queue.is_empty())
111 {
112 float previous_nominal_speed = THEKERNEL->conveyor->queue.item_ref(THEKERNEL->conveyor->queue.prev(THEKERNEL->conveyor->queue.head_i))->nominal_speed;
113
114 if (previous_nominal_speed > 0.0F) {
115 // Compute cosine of angle between previous and current path. (prev_unit_vec is negative)
116 // NOTE: Max junction velocity is computed without sin() or acos() by trig half angle identity.
117 float cos_theta = - this->previous_unit_vec[X_AXIS] * unit_vec[X_AXIS]
118 - this->previous_unit_vec[Y_AXIS] * unit_vec[Y_AXIS]
119 - this->previous_unit_vec[Z_AXIS] * unit_vec[Z_AXIS] ;
120
121 // Skip and use default max junction speed for 0 degree acute junction.
122 if (cos_theta < 0.95F) {
123 vmax_junction = min(previous_nominal_speed, block->nominal_speed);
124 // Skip and avoid divide by zero for straight junctions at 180 degrees. Limit to min() of nominal speeds.
125 if (cos_theta > -0.95F) {
126 // Compute maximum junction velocity based on maximum acceleration and junction deviation
127 float sin_theta_d2 = sqrtf(0.5F * (1.0F - cos_theta)); // Trig half angle identity. Always positive.
128 vmax_junction = min(vmax_junction, sqrtf(this->acceleration * this->junction_deviation * sin_theta_d2 / (1.0F - sin_theta_d2)));
129 }
130 }
aab6cbba 131 }
4cff3ded 132 }
aab6cbba 133 block->max_entry_speed = vmax_junction;
1cf31736 134
8b69c90d
JM
135 // Initialize block entry speed. Compute based on deceleration to user-defined minimum_planner_speed.
136 float v_allowable = this->max_allowable_speed(-this->acceleration,minimum_planner_speed,block->millimeters); //TODO: Get from config
aab6cbba
AW
137 block->entry_speed = min(vmax_junction, v_allowable);
138
139 // Initialize planner efficiency flags
140 // Set flag if block will always reach maximum junction speed regardless of entry/exit speeds.
141 // If a block can de/ac-celerate from nominal speed to zero within the length of the block, then
142 // the current block and next block junction speeds are guaranteed to always be at their maximum
143 // junction speeds in deceleration and acceleration, respectively. This is due to how the current
144 // block nominal speed limits both the current and next maximum junction speeds. Hence, in both
145 // the reverse and forward planners, the corresponding block junction speed will always be at the
146 // the maximum junction speed and may always be ignored for any speed reduction checks.
147 if (block->nominal_speed <= v_allowable) { block->nominal_length_flag = true; }
148 else { block->nominal_length_flag = false; }
2134bcf2
MM
149
150 // Always calculate trapezoid for new block
151 block->recalculate_flag = true;
1cf31736 152
aab6cbba
AW
153 // Update previous path unit_vector and nominal speed
154 memcpy(this->previous_unit_vec, unit_vec, sizeof(unit_vec)); // previous_unit_vec[] = unit_vec[]
1cf31736 155
2bb8b390 156 // Update current position
78d0e16a
MM
157 for (int i = 0; i < 3; i++)
158 THEKERNEL->robot->actuators[i]->change_last_milestone(actuator_pos[i]);
2bb8b390 159
df27a6a3 160 // Math-heavy re-computing of the whole queue to take the new
4cff3ded 161 this->recalculate();
1cf31736 162
df27a6a3 163 // The block can now be used
3a4fa0c1 164 block->ready();
2134bcf2
MM
165
166 THEKERNEL->conveyor->queue_head_block();
4cff3ded
AW
167}
168
169
170// Recalculates the motion plan according to the following algorithm:
171//
172// 1. Go over every block in reverse order and calculate a junction speed reduction (i.e. block_t.entry_factor)
173// so that:
174// a. The junction jerk is within the set limit
175// b. No speed reduction within one block requires faster deceleration than the one, true constant
176// acceleration.
177// 2. Go over every block in chronological order and dial down junction speed reduction values if
178// a. The speed increase within one block would require faster accelleration than the one, true
179// constant acceleration.
180//
181// When these stages are complete all blocks have an entry_factor that will allow all speed changes to
182// be performed using only the one, true constant acceleration, and where no junction jerk is jerkier than
183// the set limit. Finally it will:
184//
185// 3. Recalculate trapezoids for all blocks.
186//
187void Planner::recalculate() {
a617ac35 188 Conveyor::Queue_t &queue = THEKERNEL->conveyor->queue;
4dc5513d 189
a617ac35 190 unsigned int block_index;
4cff3ded 191
391bc610
MM
192 Block* previous;
193 Block* current;
391bc610 194
a617ac35
MM
195 /*
196 * a newly added block is decel limited
197 *
198 * we find its max entry speed given its exit speed
199 *
d30d9611
MM
200 * for each block, walking backwards in the queue:
201 *
a617ac35
MM
202 * if max entry speed == current entry speed
203 * then we can set recalculate to false, since clearly adding another block didn't allow us to enter faster
d30d9611
MM
204 * and thus we don't need to check entry speed for this block any more
205 *
206 * once we find an accel limited block, we must find the max exit speed and walk the queue forwards
a617ac35 207 *
d30d9611 208 * for each block, walking forwards in the queue:
a617ac35
MM
209 *
210 * given the exit speed of the previous block and our own max entry speed
211 * we can tell if we're accel or decel limited (or coasting)
212 *
213 * if prev_exit > max_entry
d30d9611 214 * then we're still decel limited. update previous trapezoid with our max entry for prev exit
a617ac35 215 * if max_entry >= prev_exit
d30d9611 216 * then we're accel limited. set recalculate to false, work out max exit speed
a617ac35 217 *
d30d9611 218 * finally, work out trapezoid for the final (and newest) block.
a617ac35
MM
219 */
220
221 /*
222 * Step 1:
223 * For each block, given the exit speed and acceleration, find the maximum entry speed
224 */
225
226 float entry_speed = minimum_planner_speed;
227
228 block_index = queue.head_i;
229 current = queue.item_ref(block_index);
230
231 if (!queue.is_empty())
391bc610 232 {
a617ac35 233 while ((block_index != queue.tail_i) && current->recalculate_flag)
391bc610 234 {
a617ac35 235 entry_speed = current->reverse_pass(entry_speed);
391bc610 236
a617ac35
MM
237 block_index = queue.prev(block_index);
238 current = queue.item_ref(block_index);
2134bcf2 239 }
13e4a3f9 240
d30d9611
MM
241 /*
242 * Step 2:
243 * now current points to either tail or first non-recalculate block
244 * and has not had its reverse_pass called
245 * or its calc trap
246 * entry_speed is set to the *exit* speed of current.
247 * each block from current to head has its entry speed set to its max entry speed- limited by decel or nominal_rate
248 */
2134bcf2 249
a617ac35 250 float exit_speed = current->max_exit_speed();
4cff3ded 251
a617ac35
MM
252 while (block_index != queue.head_i)
253 {
254 previous = current;
255 block_index = queue.next(block_index);
256 current = queue.item_ref(block_index);
257
258 // we pass the exit speed of the previous block
259 // so this block can decide if it's accel or decel limited and update its fields as appropriate
260 exit_speed = current->forward_pass(exit_speed);
2134bcf2 261
a617ac35
MM
262 previous->calculate_trapezoid(previous->entry_speed, current->entry_speed);
263 }
4cff3ded 264 }
a617ac35 265
d30d9611
MM
266 /*
267 * Step 3:
268 * work out trapezoid for final (and newest) block
269 */
270
a617ac35
MM
271 // now current points to the head item
272 // which has not had calculate_trapezoid run yet
273 current->calculate_trapezoid(current->entry_speed, minimum_planner_speed);
4cff3ded 274}
aab6cbba 275
a617ac35 276
aab6cbba
AW
277// Calculates the maximum allowable speed at this point when you must be able to reach target_velocity using the
278// acceleration within the allotted distance.
1ad23cd3 279float Planner::max_allowable_speed(float acceleration, float target_velocity, float distance) {
aab6cbba 280 return(
95b4885b 281 sqrtf(target_velocity*target_velocity-2.0F*acceleration*distance) //Was acceleration*60*60*distance, in case this breaks, but here we prefer to use seconds instead of minutes
aab6cbba
AW
282 );
283}
284
285