My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

planner.cpp 30KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
  1. /*
  2. planner.c - buffers movement commands and manages the acceleration profile plan
  3. Part of Grbl
  4. Copyright (c) 2009-2011 Simen Svale Skogsrud
  5. Grbl is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. Grbl is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with Grbl. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. /* The ring buffer implementation gleaned from the wiring_serial library by David A. Mellis. */
  17. /*
  18. Reasoning behind the mathematics in this module (in the key of 'Mathematica'):
  19. s == speed, a == acceleration, t == time, d == distance
  20. Basic definitions:
  21. Speed[s_, a_, t_] := s + (a*t)
  22. Travel[s_, a_, t_] := Integrate[Speed[s, a, t], t]
  23. Distance to reach a specific speed with a constant acceleration:
  24. Solve[{Speed[s, a, t] == m, Travel[s, a, t] == d}, d, t]
  25. d -> (m^2 - s^2)/(2 a) --> estimate_acceleration_distance()
  26. Speed after a given distance of travel with constant acceleration:
  27. Solve[{Speed[s, a, t] == m, Travel[s, a, t] == d}, m, t]
  28. m -> Sqrt[2 a d + s^2]
  29. DestinationSpeed[s_, a_, d_] := Sqrt[2 a d + s^2]
  30. When to start braking (di) to reach a specified destionation speed (s2) after accelerating
  31. from initial speed s1 without ever stopping at a plateau:
  32. Solve[{DestinationSpeed[s1, a, di] == DestinationSpeed[s2, a, d - di]}, di]
  33. di -> (2 a d - s1^2 + s2^2)/(4 a) --> intersection_distance()
  34. IntersectionDistance[s1_, s2_, a_, d_] := (2 a d - s1^2 + s2^2)/(4 a)
  35. */
  36. //#include <inttypes.h>
  37. //#include <math.h>
  38. //#include <stdlib.h>
  39. #include "Marlin.h"
  40. #include "Configuration.h"
  41. #include "pins.h"
  42. #include "fastio.h"
  43. #include "planner.h"
  44. #include "stepper.h"
  45. #include "temperature.h"
  46. #include "ultralcd.h"
  47. //===========================================================================
  48. //=============================public variables ============================
  49. //===========================================================================
  50. unsigned long minsegmenttime;
  51. float max_feedrate[4]; // set the max speeds
  52. float axis_steps_per_unit[4];
  53. long max_acceleration_units_per_sq_second[4]; // Use M201 to override by software
  54. float minimumfeedrate;
  55. float acceleration; // Normal acceleration mm/s^2 THIS IS THE DEFAULT ACCELERATION for all moves. M204 SXXXX
  56. float retract_acceleration; // mm/s^2 filament pull-pack and push-forward while standing still in the other axis M204 TXXXX
  57. float max_xy_jerk; //speed than can be stopped at once, if i understand correctly.
  58. float max_z_jerk;
  59. float mintravelfeedrate;
  60. unsigned long axis_steps_per_sqr_second[NUM_AXIS];
  61. // The current position of the tool in absolute steps
  62. long position[4]; //rescaled from extern when axis_steps_per_unit are changed by gcode
  63. static float previous_speed[4]; // Speed of previous path line segment
  64. static float previous_nominal_speed; // Nominal speed of previous path line segment
  65. //===========================================================================
  66. //=============================private variables ============================
  67. //===========================================================================
  68. static block_t block_buffer[BLOCK_BUFFER_SIZE]; // A ring buffer for motion instfructions
  69. static volatile unsigned char block_buffer_head; // Index of the next block to be pushed
  70. static volatile unsigned char block_buffer_tail; // Index of the block to process now
  71. // Used for the frequency limit
  72. static unsigned char old_direction_bits = 0; // Old direction bits. Used for speed calculations
  73. static long x_segment_time[3]={0,0,0}; // Segment times (in us). Used for speed calculations
  74. static long y_segment_time[3]={0,0,0};
  75. // Returns the index of the next block in the ring buffer
  76. // NOTE: Removed modulo (%) operator, which uses an expensive divide and multiplication.
  77. static int8_t next_block_index(int8_t block_index) {
  78. block_index++;
  79. if (block_index == BLOCK_BUFFER_SIZE) { block_index = 0; }
  80. return(block_index);
  81. }
  82. // Returns the index of the previous block in the ring buffer
  83. static int8_t prev_block_index(int8_t block_index) {
  84. if (block_index == 0) { block_index = BLOCK_BUFFER_SIZE; }
  85. block_index--;
  86. return(block_index);
  87. }
  88. //===========================================================================
  89. //=============================functions ============================
  90. //===========================================================================
  91. // Calculates the distance (not time) it takes to accelerate from initial_rate to target_rate using the
  92. // given acceleration:
  93. inline float estimate_acceleration_distance(float initial_rate, float target_rate, float acceleration) {
  94. if (acceleration!=0) {
  95. return((target_rate*target_rate-initial_rate*initial_rate)/
  96. (2.0*acceleration));
  97. }
  98. else {
  99. return 0.0; // acceleration was 0, set acceleration distance to 0
  100. }
  101. }
  102. // This function gives you the point at which you must start braking (at the rate of -acceleration) if
  103. // you started at speed initial_rate and accelerated until this point and want to end at the final_rate after
  104. // a total travel of distance. This can be used to compute the intersection point between acceleration and
  105. // deceleration in the cases where the trapezoid has no plateau (i.e. never reaches maximum speed)
  106. inline float intersection_distance(float initial_rate, float final_rate, float acceleration, float distance) {
  107. if (acceleration!=0) {
  108. return((2.0*acceleration*distance-initial_rate*initial_rate+final_rate*final_rate)/
  109. (4.0*acceleration) );
  110. }
  111. else {
  112. return 0.0; // acceleration was 0, set intersection distance to 0
  113. }
  114. }
  115. // Calculates trapezoid parameters so that the entry- and exit-speed is compensated by the provided factors.
  116. void calculate_trapezoid_for_block(block_t *block, float entry_factor, float exit_factor) {
  117. long initial_rate = ceil(block->nominal_rate*entry_factor); // (step/min)
  118. long final_rate = ceil(block->nominal_rate*exit_factor); // (step/min)
  119. // Limit minimal step rate (Otherwise the timer will overflow.)
  120. if(initial_rate <120) {initial_rate=120; }
  121. if(final_rate < 120) {final_rate=120; }
  122. long acceleration = block->acceleration_st;
  123. int32_t accelerate_steps =
  124. ceil(estimate_acceleration_distance(block->initial_rate, block->nominal_rate, acceleration));
  125. int32_t decelerate_steps =
  126. floor(estimate_acceleration_distance(block->nominal_rate, block->final_rate, -acceleration));
  127. // Calculate the size of Plateau of Nominal Rate.
  128. int32_t plateau_steps = block->step_event_count-accelerate_steps-decelerate_steps;
  129. // Is the Plateau of Nominal Rate smaller than nothing? That means no cruising, and we will
  130. // have to use intersection_distance() to calculate when to abort acceleration and start braking
  131. // in order to reach the final_rate exactly at the end of this block.
  132. if (plateau_steps < 0) {
  133. accelerate_steps = ceil(
  134. intersection_distance(block->initial_rate, block->final_rate, acceleration, block->step_event_count));
  135. accelerate_steps = max(accelerate_steps,0); // Check limits due to numerical round-off
  136. accelerate_steps = min(accelerate_steps,block->step_event_count);
  137. plateau_steps = 0;
  138. }
  139. #ifdef ADVANCE
  140. long initial_advance = block->advance*entry_factor*entry_factor;
  141. long final_advance = block->advance*exit_factor*exit_factor;
  142. #endif // ADVANCE
  143. // block->accelerate_until = accelerate_steps;
  144. // block->decelerate_after = accelerate_steps+plateau_steps;
  145. CRITICAL_SECTION_START; // Fill variables used by the stepper in a critical section
  146. if(block->busy == false) { // Don't update variables if block is busy.
  147. block->accelerate_until = accelerate_steps;
  148. block->decelerate_after = accelerate_steps+plateau_steps;
  149. block->initial_rate = initial_rate;
  150. block->final_rate = final_rate;
  151. #ifdef ADVANCE
  152. block->initial_advance = initial_advance;
  153. block->final_advance = final_advance;
  154. #endif //ADVANCE
  155. }
  156. CRITICAL_SECTION_END;
  157. }
  158. // Calculates the maximum allowable speed at this point when you must be able to reach target_velocity using the
  159. // acceleration within the allotted distance.
  160. inline float max_allowable_speed(float acceleration, float target_velocity, float distance) {
  161. return sqrt(target_velocity*target_velocity-2*acceleration*distance);
  162. }
  163. // "Junction jerk" in this context is the immediate change in speed at the junction of two blocks.
  164. // This method will calculate the junction jerk as the euclidean distance between the nominal
  165. // velocities of the respective blocks.
  166. //inline float junction_jerk(block_t *before, block_t *after) {
  167. // return sqrt(
  168. // pow((before->speed_x-after->speed_x), 2)+pow((before->speed_y-after->speed_y), 2));
  169. //}
  170. // The kernel called by planner_recalculate() when scanning the plan from last to first entry.
  171. void planner_reverse_pass_kernel(block_t *previous, block_t *current, block_t *next) {
  172. if(!current) { return; }
  173. if (next) {
  174. // If entry speed is already at the maximum entry speed, no need to recheck. Block is cruising.
  175. // If not, block in state of acceleration or deceleration. Reset entry speed to maximum and
  176. // check for maximum allowable speed reductions to ensure maximum possible planned speed.
  177. if (current->entry_speed != current->max_entry_speed) {
  178. // If nominal length true, max junction speed is guaranteed to be reached. Only compute
  179. // for max allowable speed if block is decelerating and nominal length is false.
  180. if ((!current->nominal_length_flag) && (current->max_entry_speed > next->entry_speed)) {
  181. current->entry_speed = min( current->max_entry_speed,
  182. max_allowable_speed(-current->acceleration,next->entry_speed,current->millimeters));
  183. } else {
  184. current->entry_speed = current->max_entry_speed;
  185. }
  186. current->recalculate_flag = true;
  187. }
  188. } // Skip last block. Already initialized and set for recalculation.
  189. }
  190. // planner_recalculate() needs to go over the current plan twice. Once in reverse and once forward. This
  191. // implements the reverse pass.
  192. void planner_reverse_pass() {
  193. char block_index = block_buffer_head;
  194. if(((block_buffer_head-block_buffer_tail + BLOCK_BUFFER_SIZE) & (BLOCK_BUFFER_SIZE - 1)) > 3) {
  195. block_index = (block_buffer_head - 3) & (BLOCK_BUFFER_SIZE - 1);
  196. block_t *block[3] = { NULL, NULL, NULL };
  197. while(block_index != block_buffer_tail) {
  198. block_index = prev_block_index(block_index);
  199. block[2]= block[1];
  200. block[1]= block[0];
  201. block[0] = &block_buffer[block_index];
  202. planner_reverse_pass_kernel(block[0], block[1], block[2]);
  203. }
  204. }
  205. }
  206. // The kernel called by planner_recalculate() when scanning the plan from first to last entry.
  207. void planner_forward_pass_kernel(block_t *previous, block_t *current, block_t *next) {
  208. if(!previous) { return; }
  209. // If the previous block is an acceleration block, but it is not long enough to complete the
  210. // full speed change within the block, we need to adjust the entry speed accordingly. Entry
  211. // speeds have already been reset, maximized, and reverse planned by reverse planner.
  212. // If nominal length is true, max junction speed is guaranteed to be reached. No need to recheck.
  213. if (!previous->nominal_length_flag) {
  214. if (previous->entry_speed < current->entry_speed) {
  215. double entry_speed = min( current->entry_speed,
  216. max_allowable_speed(-previous->acceleration,previous->entry_speed,previous->millimeters) );
  217. // Check for junction speed change
  218. if (current->entry_speed != entry_speed) {
  219. current->entry_speed = entry_speed;
  220. current->recalculate_flag = true;
  221. }
  222. }
  223. }
  224. }
  225. // planner_recalculate() needs to go over the current plan twice. Once in reverse and once forward. This
  226. // implements the forward pass.
  227. void planner_forward_pass() {
  228. char block_index = block_buffer_tail;
  229. block_t *block[3] = { NULL, NULL, NULL };
  230. while(block_index != block_buffer_head) {
  231. block[0] = block[1];
  232. block[1] = block[2];
  233. block[2] = &block_buffer[block_index];
  234. planner_forward_pass_kernel(block[0],block[1],block[2]);
  235. block_index = next_block_index(block_index);
  236. }
  237. planner_forward_pass_kernel(block[1], block[2], NULL);
  238. }
  239. // Recalculates the trapezoid speed profiles for all blocks in the plan according to the
  240. // entry_factor for each junction. Must be called by planner_recalculate() after
  241. // updating the blocks.
  242. void planner_recalculate_trapezoids() {
  243. int8_t block_index = block_buffer_tail;
  244. block_t *current;
  245. block_t *next = NULL;
  246. while(block_index != block_buffer_head) {
  247. current = next;
  248. next = &block_buffer[block_index];
  249. if (current) {
  250. // Recalculate if current block entry or exit junction speed has changed.
  251. if (current->recalculate_flag || next->recalculate_flag) {
  252. // NOTE: Entry and exit factors always > 0 by all previous logic operations.
  253. calculate_trapezoid_for_block(current, current->entry_speed/current->nominal_speed,
  254. next->entry_speed/current->nominal_speed);
  255. current->recalculate_flag = false; // Reset current only to ensure next trapezoid is computed
  256. }
  257. }
  258. block_index = next_block_index( block_index );
  259. }
  260. // Last/newest block in buffer. Exit speed is set with MINIMUM_PLANNER_SPEED. Always recalculated.
  261. if(next != NULL) {
  262. calculate_trapezoid_for_block(next, next->entry_speed/next->nominal_speed,
  263. MINIMUM_PLANNER_SPEED/next->nominal_speed);
  264. next->recalculate_flag = false;
  265. }
  266. }
  267. // Recalculates the motion plan according to the following algorithm:
  268. //
  269. // 1. Go over every block in reverse order and calculate a junction speed reduction (i.e. block_t.entry_factor)
  270. // so that:
  271. // a. The junction jerk is within the set limit
  272. // b. No speed reduction within one block requires faster deceleration than the one, true constant
  273. // acceleration.
  274. // 2. Go over every block in chronological order and dial down junction speed reduction values if
  275. // a. The speed increase within one block would require faster accelleration than the one, true
  276. // constant acceleration.
  277. //
  278. // When these stages are complete all blocks have an entry_factor that will allow all speed changes to
  279. // be performed using only the one, true constant acceleration, and where no junction jerk is jerkier than
  280. // the set limit. Finally it will:
  281. //
  282. // 3. Recalculate trapezoids for all blocks.
  283. void planner_recalculate() {
  284. planner_reverse_pass();
  285. planner_forward_pass();
  286. planner_recalculate_trapezoids();
  287. }
  288. void plan_init() {
  289. block_buffer_head = 0;
  290. block_buffer_tail = 0;
  291. memset(position, 0, sizeof(position)); // clear position
  292. previous_speed[0] = 0.0;
  293. previous_speed[1] = 0.0;
  294. previous_speed[2] = 0.0;
  295. previous_speed[3] = 0.0;
  296. previous_nominal_speed = 0.0;
  297. }
  298. void plan_discard_current_block() {
  299. if (block_buffer_head != block_buffer_tail) {
  300. block_buffer_tail = (block_buffer_tail + 1) & (BLOCK_BUFFER_SIZE - 1);
  301. }
  302. }
  303. block_t *plan_get_current_block() {
  304. if (block_buffer_head == block_buffer_tail) {
  305. return(NULL);
  306. }
  307. block_t *block = &block_buffer[block_buffer_tail];
  308. block->busy = true;
  309. return(block);
  310. }
  311. void check_axes_activity() {
  312. unsigned char x_active = 0;
  313. unsigned char y_active = 0;
  314. unsigned char z_active = 0;
  315. unsigned char e_active = 0;
  316. block_t *block;
  317. if(block_buffer_tail != block_buffer_head) {
  318. char block_index = block_buffer_tail;
  319. while(block_index != block_buffer_head) {
  320. block = &block_buffer[block_index];
  321. if(block->steps_x != 0) x_active++;
  322. if(block->steps_y != 0) y_active++;
  323. if(block->steps_z != 0) z_active++;
  324. if(block->steps_e != 0) e_active++;
  325. block_index = (block_index+1) & (BLOCK_BUFFER_SIZE - 1);
  326. }
  327. }
  328. if((DISABLE_X) && (x_active == 0)) disable_x();
  329. if((DISABLE_Y) && (y_active == 0)) disable_y();
  330. if((DISABLE_Z) && (z_active == 0)) disable_z();
  331. if((DISABLE_E) && (e_active == 0)) disable_e();
  332. }
  333. float junction_deviation = 0.1;
  334. // Add a new linear movement to the buffer. steps_x, _y and _z is the absolute position in
  335. // mm. Microseconds specify how many microseconds the move should take to perform. To aid acceleration
  336. // calculation the caller must also provide the physical length of the line in millimeters.
  337. void plan_buffer_line(const float &x, const float &y, const float &z, const float &e, float feed_rate)
  338. {
  339. // Calculate the buffer head after we push this byte
  340. int next_buffer_head = next_block_index(block_buffer_head);
  341. // If the buffer is full: good! That means we are well ahead of the robot.
  342. // Rest here until there is room in the buffer.
  343. while(block_buffer_tail == next_buffer_head) {
  344. manage_heater();
  345. manage_inactivity(1);
  346. LCD_STATUS;
  347. }
  348. // The target position of the tool in absolute steps
  349. // Calculate target position in absolute steps
  350. //this should be done after the wait, because otherwise a M92 code within the gcode disrupts this calculation somehow
  351. long target[4];
  352. target[X_AXIS] = lround(x*axis_steps_per_unit[X_AXIS]);
  353. target[Y_AXIS] = lround(y*axis_steps_per_unit[Y_AXIS]);
  354. target[Z_AXIS] = lround(z*axis_steps_per_unit[Z_AXIS]);
  355. target[E_AXIS] = lround(e*axis_steps_per_unit[E_AXIS]);
  356. // Prepare to set up new block
  357. block_t *block = &block_buffer[block_buffer_head];
  358. // Mark block as not busy (Not executed by the stepper interrupt)
  359. block->busy = false;
  360. // Number of steps for each axis
  361. block->steps_x = labs(target[X_AXIS]-position[X_AXIS]);
  362. block->steps_y = labs(target[Y_AXIS]-position[Y_AXIS]);
  363. block->steps_z = labs(target[Z_AXIS]-position[Z_AXIS]);
  364. block->steps_e = labs(target[E_AXIS]-position[E_AXIS]);
  365. block->step_event_count = max(block->steps_x, max(block->steps_y, max(block->steps_z, block->steps_e)));
  366. // Bail if this is a zero-length block
  367. if (block->step_event_count <=dropsegments) { return; };
  368. // Compute direction bits for this block
  369. block->direction_bits = 0;
  370. if (target[X_AXIS] < position[X_AXIS]) { block->direction_bits |= (1<<X_AXIS); }
  371. if (target[Y_AXIS] < position[Y_AXIS]) { block->direction_bits |= (1<<Y_AXIS); }
  372. if (target[Z_AXIS] < position[Z_AXIS]) { block->direction_bits |= (1<<Z_AXIS); }
  373. if (target[E_AXIS] < position[E_AXIS]) { block->direction_bits |= (1<<E_AXIS); }
  374. //enable active axes
  375. if(block->steps_x != 0) enable_x();
  376. if(block->steps_y != 0) enable_y();
  377. if(block->steps_z != 0) enable_z();
  378. if(block->steps_e != 0) enable_e();
  379. float delta_mm[4];
  380. delta_mm[X_AXIS] = (target[X_AXIS]-position[X_AXIS])/axis_steps_per_unit[X_AXIS];
  381. delta_mm[Y_AXIS] = (target[Y_AXIS]-position[Y_AXIS])/axis_steps_per_unit[Y_AXIS];
  382. delta_mm[Z_AXIS] = (target[Z_AXIS]-position[Z_AXIS])/axis_steps_per_unit[Z_AXIS];
  383. delta_mm[E_AXIS] = (target[E_AXIS]-position[E_AXIS])/axis_steps_per_unit[E_AXIS];
  384. block->millimeters = sqrt(square(delta_mm[X_AXIS]) + square(delta_mm[Y_AXIS]) +
  385. square(delta_mm[Z_AXIS]));
  386. float inverse_millimeters = 1.0/block->millimeters; // Inverse millimeters to remove multiple divides
  387. // Calculate speed in mm/second for each axis. No divide by zero due to previous checks.
  388. float inverse_second = feed_rate * inverse_millimeters;
  389. block->nominal_speed = block->millimeters * inverse_second; // (mm/sec) Always > 0
  390. block->nominal_rate = ceil(block->step_event_count * inverse_second); // (step/sec) Always > 0
  391. // unsigned long microseconds;
  392. #if 0
  393. if (block->steps_e == 0) {
  394. if(feed_rate<mintravelfeedrate) feed_rate=mintravelfeedrate;
  395. }
  396. else {
  397. if(feed_rate<minimumfeedrate) feed_rate=minimumfeedrate;
  398. }
  399. microseconds = lround((block->millimeters/feed_rate)*1000000);
  400. // slow down when de buffer starts to empty, rather than wait at the corner for a buffer refill
  401. // reduces/removes corner blobs as the machine won't come to a full stop.
  402. int blockcount=(block_buffer_head-block_buffer_tail + BLOCK_BUFFER_SIZE) & (BLOCK_BUFFER_SIZE - 1);
  403. if ((blockcount>0) && (blockcount < (BLOCK_BUFFER_SIZE - 4))) {
  404. if (microseconds<minsegmenttime) { // buffer is draining, add extra time. The amount of time added increases if the buffer is still emptied more.
  405. microseconds=microseconds+lround(2*(minsegmenttime-microseconds)/blockcount);
  406. }
  407. }
  408. else {
  409. if (microseconds<minsegmenttime) microseconds=minsegmenttime;
  410. }
  411. // END OF SLOW DOWN SECTION
  412. #endif
  413. // Calculate speed in mm/sec for each axis
  414. float current_speed[4];
  415. for(int i=0; i < 4; i++) {
  416. current_speed[i] = delta_mm[i] * inverse_second;
  417. }
  418. // Limit speed per axis
  419. float speed_factor = 1.0; //factor <=1 do decrease speed
  420. for(int i=0; i < 4; i++) {
  421. if(abs(current_speed[i]) > max_feedrate[i])
  422. speed_factor = min(speed_factor, max_feedrate[i] / abs(current_speed[i]));
  423. }
  424. // Max segement time in us.
  425. #ifdef XY_FREQUENCY_LIMIT
  426. #define MAX_FREQ_TIME (1000000.0/XY_FREQUENCY_LIMIT)
  427. // Check and limit the xy direction change frequency
  428. unsigned char direction_change = block->direction_bits ^ old_direction_bits;
  429. old_direction_bits = block->direction_bits;
  430. long segment_time = lround(1000000.0/inverse_second);
  431. if((direction_change & (1<<X_AXIS)) == 0) {
  432. x_segment_time[0] += segment_time;
  433. }
  434. else {
  435. x_segment_time[2] = x_segment_time[1];
  436. x_segment_time[1] = x_segment_time[0];
  437. x_segment_time[0] = segment_time;
  438. }
  439. if((direction_change & (1<<Y_AXIS)) == 0) {
  440. y_segment_time[0] += segment_time;
  441. }
  442. else {
  443. y_segment_time[2] = y_segment_time[1];
  444. y_segment_time[1] = y_segment_time[0];
  445. y_segment_time[0] = segment_time;
  446. }
  447. long max_x_segment_time = max(x_segment_time[0], max(x_segment_time[1], x_segment_time[2]));
  448. long max_y_segment_time = max(y_segment_time[0], max(y_segment_time[1], y_segment_time[2]));
  449. long min_xy_segment_time =min(max_x_segment_time, max_y_segment_time);
  450. if(min_xy_segment_time < MAX_FREQ_TIME) speed_factor = min(speed_factor, (float)min_xy_segment_time / (float)MAX_FREQ_TIME);
  451. #endif
  452. // Correct the speed
  453. if( speed_factor < 1.0) {
  454. // Serial.print("speed factor : "); Serial.println(speed_factor);
  455. for(int i=0; i < 4; i++) {
  456. if(abs(current_speed[i]) > max_feedrate[i])
  457. speed_factor = min(speed_factor, max_feedrate[i] / abs(current_speed[i]));
  458. // Serial.print("current_speed"); Serial.print(i); Serial.print(" : "); Serial.println(current_speed[i]);
  459. }
  460. for(unsigned char i=0; i < 4; i++) {
  461. current_speed[i] *= speed_factor;
  462. }
  463. block->nominal_speed *= speed_factor;
  464. block->nominal_rate *= speed_factor;
  465. }
  466. // Compute and limit the acceleration rate for the trapezoid generator.
  467. float steps_per_mm = block->step_event_count/block->millimeters;
  468. if(block->steps_x == 0 && block->steps_y == 0 && block->steps_z == 0) {
  469. block->acceleration_st = ceil(retract_acceleration * steps_per_mm); // convert to: acceleration steps/sec^2
  470. }
  471. else {
  472. block->acceleration_st = ceil(acceleration * steps_per_mm); // convert to: acceleration steps/sec^2
  473. // Limit acceleration per axis
  474. if(((float)block->acceleration_st * (float)block->steps_x / (float)block->step_event_count) > axis_steps_per_sqr_second[X_AXIS])
  475. block->acceleration_st = axis_steps_per_sqr_second[X_AXIS];
  476. if(((float)block->acceleration_st * (float)block->steps_y / (float)block->step_event_count) > axis_steps_per_sqr_second[Y_AXIS])
  477. block->acceleration_st = axis_steps_per_sqr_second[Y_AXIS];
  478. if(((float)block->acceleration_st * (float)block->steps_e / (float)block->step_event_count) > axis_steps_per_sqr_second[E_AXIS])
  479. block->acceleration_st = axis_steps_per_sqr_second[E_AXIS];
  480. if(((float)block->acceleration_st * (float)block->steps_z / (float)block->step_event_count ) > axis_steps_per_sqr_second[Z_AXIS])
  481. block->acceleration_st = axis_steps_per_sqr_second[Z_AXIS];
  482. }
  483. block->acceleration = block->acceleration_st / steps_per_mm;
  484. block->acceleration_rate = (long)((float)block->acceleration_st * 8.388608);
  485. #if 0 // Use old jerk for now
  486. // Compute path unit vector
  487. double unit_vec[3];
  488. unit_vec[X_AXIS] = delta_mm[X_AXIS]*inverse_millimeters;
  489. unit_vec[Y_AXIS] = delta_mm[Y_AXIS]*inverse_millimeters;
  490. unit_vec[Z_AXIS] = delta_mm[Z_AXIS]*inverse_millimeters;
  491. // Compute maximum allowable entry speed at junction by centripetal acceleration approximation.
  492. // Let a circle be tangent to both previous and current path line segments, where the junction
  493. // deviation is defined as the distance from the junction to the closest edge of the circle,
  494. // colinear with the circle center. The circular segment joining the two paths represents the
  495. // path of centripetal acceleration. Solve for max velocity based on max acceleration about the
  496. // radius of the circle, defined indirectly by junction deviation. This may be also viewed as
  497. // path width or max_jerk in the previous grbl version. This approach does not actually deviate
  498. // from path, but used as a robust way to compute cornering speeds, as it takes into account the
  499. // nonlinearities of both the junction angle and junction velocity.
  500. double vmax_junction = MINIMUM_PLANNER_SPEED; // Set default max junction speed
  501. // Skip first block or when previous_nominal_speed is used as a flag for homing and offset cycles.
  502. if ((block_buffer_head != block_buffer_tail) && (previous_nominal_speed > 0.0)) {
  503. // Compute cosine of angle between previous and current path. (prev_unit_vec is negative)
  504. // NOTE: Max junction velocity is computed without sin() or acos() by trig half angle identity.
  505. double cos_theta = - previous_unit_vec[X_AXIS] * unit_vec[X_AXIS]
  506. - previous_unit_vec[Y_AXIS] * unit_vec[Y_AXIS]
  507. - previous_unit_vec[Z_AXIS] * unit_vec[Z_AXIS] ;
  508. // Skip and use default max junction speed for 0 degree acute junction.
  509. if (cos_theta < 0.95) {
  510. vmax_junction = min(previous_nominal_speed,block->nominal_speed);
  511. // Skip and avoid divide by zero for straight junctions at 180 degrees. Limit to min() of nominal speeds.
  512. if (cos_theta > -0.95) {
  513. // Compute maximum junction velocity based on maximum acceleration and junction deviation
  514. double sin_theta_d2 = sqrt(0.5*(1.0-cos_theta)); // Trig half angle identity. Always positive.
  515. vmax_junction = min(vmax_junction,
  516. sqrt(block->acceleration * junction_deviation * sin_theta_d2/(1.0-sin_theta_d2)) );
  517. }
  518. }
  519. }
  520. #endif
  521. // Start with a safe speed
  522. float vmax_junction = max_xy_jerk/2;
  523. if(abs(current_speed[Z_AXIS]) > max_z_jerk/2)
  524. vmax_junction = max_z_jerk/2;
  525. vmax_junction = min(vmax_junction, block->nominal_speed);
  526. if ((block_buffer_head != block_buffer_tail) && (previous_nominal_speed > 0.0)) {
  527. float jerk = sqrt(pow((current_speed[X_AXIS]-previous_speed[X_AXIS]), 2)+pow((current_speed[Y_AXIS]-previous_speed[Y_AXIS]), 2));
  528. if((previous_speed[X_AXIS] != 0.0) || (previous_speed[Y_AXIS] != 0.0)) {
  529. vmax_junction = block->nominal_speed;
  530. }
  531. if (jerk > max_xy_jerk) {
  532. vmax_junction *= (max_xy_jerk/jerk);
  533. }
  534. if(abs(current_speed[Z_AXIS] - previous_speed[Z_AXIS]) > max_z_jerk) {
  535. vmax_junction *= (max_z_jerk/abs(current_speed[Z_AXIS] - previous_speed[Z_AXIS]));
  536. }
  537. }
  538. block->max_entry_speed = vmax_junction;
  539. // Initialize block entry speed. Compute based on deceleration to user-defined MINIMUM_PLANNER_SPEED.
  540. double v_allowable = max_allowable_speed(-block->acceleration,MINIMUM_PLANNER_SPEED,block->millimeters);
  541. block->entry_speed = min(vmax_junction, v_allowable);
  542. // Initialize planner efficiency flags
  543. // Set flag if block will always reach maximum junction speed regardless of entry/exit speeds.
  544. // If a block can de/ac-celerate from nominal speed to zero within the length of the block, then
  545. // the current block and next block junction speeds are guaranteed to always be at their maximum
  546. // junction speeds in deceleration and acceleration, respectively. This is due to how the current
  547. // block nominal speed limits both the current and next maximum junction speeds. Hence, in both
  548. // the reverse and forward planners, the corresponding block junction speed will always be at the
  549. // the maximum junction speed and may always be ignored for any speed reduction checks.
  550. if (block->nominal_speed <= v_allowable) { block->nominal_length_flag = true; }
  551. else { block->nominal_length_flag = false; }
  552. block->recalculate_flag = true; // Always calculate trapezoid for new block
  553. // Update previous path unit_vector and nominal speed
  554. memcpy(previous_speed, current_speed, sizeof(previous_speed)); // previous_speed[] = current_speed[]
  555. previous_nominal_speed = block->nominal_speed;
  556. #ifdef ADVANCE
  557. // Calculate advance rate
  558. if((block->steps_e == 0) || (block->steps_x == 0 && block->steps_y == 0 && block->steps_z == 0)) {
  559. block->advance_rate = 0;
  560. block->advance = 0;
  561. }
  562. else {
  563. long acc_dist = estimate_acceleration_distance(0, block->nominal_rate, block->acceleration_st);
  564. float advance = (STEPS_PER_CUBIC_MM_E * EXTRUDER_ADVANCE_K) *
  565. (block->speed_e * block->speed_e * EXTRUTION_AREA * EXTRUTION_AREA / 3600.0)*65536;
  566. block->advance = advance;
  567. if(acc_dist == 0) {
  568. block->advance_rate = 0;
  569. }
  570. else {
  571. block->advance_rate = advance / (float)acc_dist;
  572. }
  573. }
  574. #endif // ADVANCE
  575. calculate_trapezoid_for_block(block, block->entry_speed/block->nominal_speed,
  576. MINIMUM_PLANNER_SPEED/block->nominal_speed);
  577. // Move buffer head
  578. block_buffer_head = next_buffer_head;
  579. // Update position
  580. memcpy(position, target, sizeof(target)); // position[] = target[]
  581. planner_recalculate();
  582. st_wake_up();
  583. }
  584. void plan_set_position(const float &x, const float &y, const float &z, const float &e)
  585. {
  586. position[X_AXIS] = lround(x*axis_steps_per_unit[X_AXIS]);
  587. position[Y_AXIS] = lround(y*axis_steps_per_unit[Y_AXIS]);
  588. position[Z_AXIS] = lround(z*axis_steps_per_unit[Z_AXIS]);
  589. position[E_AXIS] = lround(e*axis_steps_per_unit[E_AXIS]);
  590. previous_nominal_speed = 0.0; // Resets planner junction speeds. Assumes start from rest.
  591. previous_speed[0] = 0.0;
  592. previous_speed[1] = 0.0;
  593. previous_speed[2] = 0.0;
  594. previous_speed[3] = 0.0;
  595. }