My Marlin configs for Fabrikator Mini and CTC i3 Pro B
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

planner.cpp 32KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780
  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 "Configuration.h"
  40. #include "pins.h"
  41. #include "Marlin.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. unsigned 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. #ifdef AUTOTEMP
  66. float autotemp_max=250;
  67. float autotemp_min=210;
  68. float autotemp_factor=0.1;
  69. bool autotemp_enabled=false;
  70. #endif
  71. //===========================================================================
  72. //=================semi-private variables, used in inline functions =====
  73. //===========================================================================
  74. block_t block_buffer[BLOCK_BUFFER_SIZE]; // A ring buffer for motion instfructions
  75. volatile unsigned char block_buffer_head; // Index of the next block to be pushed
  76. volatile unsigned char block_buffer_tail; // Index of the block to process now
  77. //===========================================================================
  78. //=============================private variables ============================
  79. //===========================================================================
  80. #ifdef XY_FREQUENCY_LIMIT
  81. // Used for the frequency limit
  82. static unsigned char old_direction_bits = 0; // Old direction bits. Used for speed calculations
  83. static long x_segment_time[3]={0,0,0}; // Segment times (in us). Used for speed calculations
  84. static long y_segment_time[3]={0,0,0};
  85. #endif
  86. // Returns the index of the next block in the ring buffer
  87. // NOTE: Removed modulo (%) operator, which uses an expensive divide and multiplication.
  88. static int8_t next_block_index(int8_t block_index) {
  89. block_index++;
  90. if (block_index == BLOCK_BUFFER_SIZE) { block_index = 0; }
  91. return(block_index);
  92. }
  93. // Returns the index of the previous block in the ring buffer
  94. static int8_t prev_block_index(int8_t block_index) {
  95. if (block_index == 0) { block_index = BLOCK_BUFFER_SIZE; }
  96. block_index--;
  97. return(block_index);
  98. }
  99. //===========================================================================
  100. //=============================functions ============================
  101. //===========================================================================
  102. // Calculates the distance (not time) it takes to accelerate from initial_rate to target_rate using the
  103. // given acceleration:
  104. FORCE_INLINE float estimate_acceleration_distance(float initial_rate, float target_rate, float acceleration)
  105. {
  106. if (acceleration!=0) {
  107. return((target_rate*target_rate-initial_rate*initial_rate)/
  108. (2.0*acceleration));
  109. }
  110. else {
  111. return 0.0; // acceleration was 0, set acceleration distance to 0
  112. }
  113. }
  114. // This function gives you the point at which you must start braking (at the rate of -acceleration) if
  115. // you started at speed initial_rate and accelerated until this point and want to end at the final_rate after
  116. // a total travel of distance. This can be used to compute the intersection point between acceleration and
  117. // deceleration in the cases where the trapezoid has no plateau (i.e. never reaches maximum speed)
  118. FORCE_INLINE float intersection_distance(float initial_rate, float final_rate, float acceleration, float distance)
  119. {
  120. if (acceleration!=0) {
  121. return((2.0*acceleration*distance-initial_rate*initial_rate+final_rate*final_rate)/
  122. (4.0*acceleration) );
  123. }
  124. else {
  125. return 0.0; // acceleration was 0, set intersection distance to 0
  126. }
  127. }
  128. // Calculates trapezoid parameters so that the entry- and exit-speed is compensated by the provided factors.
  129. void calculate_trapezoid_for_block(block_t *block, float entry_factor, float exit_factor) {
  130. unsigned long initial_rate = ceil(block->nominal_rate*entry_factor); // (step/min)
  131. unsigned long final_rate = ceil(block->nominal_rate*exit_factor); // (step/min)
  132. // Limit minimal step rate (Otherwise the timer will overflow.)
  133. if(initial_rate <120) {initial_rate=120; }
  134. if(final_rate < 120) {final_rate=120; }
  135. long acceleration = block->acceleration_st;
  136. int32_t accelerate_steps =
  137. ceil(estimate_acceleration_distance(block->initial_rate, block->nominal_rate, acceleration));
  138. int32_t decelerate_steps =
  139. floor(estimate_acceleration_distance(block->nominal_rate, block->final_rate, -acceleration));
  140. // Calculate the size of Plateau of Nominal Rate.
  141. int32_t plateau_steps = block->step_event_count-accelerate_steps-decelerate_steps;
  142. // Is the Plateau of Nominal Rate smaller than nothing? That means no cruising, and we will
  143. // have to use intersection_distance() to calculate when to abort acceleration and start braking
  144. // in order to reach the final_rate exactly at the end of this block.
  145. if (plateau_steps < 0) {
  146. accelerate_steps = ceil(
  147. intersection_distance(block->initial_rate, block->final_rate, acceleration, block->step_event_count));
  148. accelerate_steps = max(accelerate_steps,0); // Check limits due to numerical round-off
  149. accelerate_steps = min(accelerate_steps,block->step_event_count);
  150. plateau_steps = 0;
  151. }
  152. #ifdef ADVANCE
  153. long initial_advance = block->advance*entry_factor*entry_factor;
  154. long final_advance = block->advance*exit_factor*exit_factor;
  155. #endif // ADVANCE
  156. // block->accelerate_until = accelerate_steps;
  157. // block->decelerate_after = accelerate_steps+plateau_steps;
  158. CRITICAL_SECTION_START; // Fill variables used by the stepper in a critical section
  159. if(block->busy == false) { // Don't update variables if block is busy.
  160. block->accelerate_until = accelerate_steps;
  161. block->decelerate_after = accelerate_steps+plateau_steps;
  162. block->initial_rate = initial_rate;
  163. block->final_rate = final_rate;
  164. #ifdef ADVANCE
  165. block->initial_advance = initial_advance;
  166. block->final_advance = final_advance;
  167. #endif //ADVANCE
  168. }
  169. CRITICAL_SECTION_END;
  170. }
  171. // Calculates the maximum allowable speed at this point when you must be able to reach target_velocity using the
  172. // acceleration within the allotted distance.
  173. FORCE_INLINE float max_allowable_speed(float acceleration, float target_velocity, float distance) {
  174. return sqrt(target_velocity*target_velocity-2*acceleration*distance);
  175. }
  176. // "Junction jerk" in this context is the immediate change in speed at the junction of two blocks.
  177. // This method will calculate the junction jerk as the euclidean distance between the nominal
  178. // velocities of the respective blocks.
  179. //inline float junction_jerk(block_t *before, block_t *after) {
  180. // return sqrt(
  181. // pow((before->speed_x-after->speed_x), 2)+pow((before->speed_y-after->speed_y), 2));
  182. //}
  183. // The kernel called by planner_recalculate() when scanning the plan from last to first entry.
  184. void planner_reverse_pass_kernel(block_t *previous, block_t *current, block_t *next) {
  185. if(!current) { return; }
  186. if (next) {
  187. // If entry speed is already at the maximum entry speed, no need to recheck. Block is cruising.
  188. // If not, block in state of acceleration or deceleration. Reset entry speed to maximum and
  189. // check for maximum allowable speed reductions to ensure maximum possible planned speed.
  190. if (current->entry_speed != current->max_entry_speed) {
  191. // If nominal length true, max junction speed is guaranteed to be reached. Only compute
  192. // for max allowable speed if block is decelerating and nominal length is false.
  193. if ((!current->nominal_length_flag) && (current->max_entry_speed > next->entry_speed)) {
  194. current->entry_speed = min( current->max_entry_speed,
  195. max_allowable_speed(-current->acceleration,next->entry_speed,current->millimeters));
  196. } else {
  197. current->entry_speed = current->max_entry_speed;
  198. }
  199. current->recalculate_flag = true;
  200. }
  201. } // Skip last block. Already initialized and set for recalculation.
  202. }
  203. // planner_recalculate() needs to go over the current plan twice. Once in reverse and once forward. This
  204. // implements the reverse pass.
  205. void planner_reverse_pass() {
  206. uint8_t block_index = block_buffer_head;
  207. if(((block_buffer_head-block_buffer_tail + BLOCK_BUFFER_SIZE) & (BLOCK_BUFFER_SIZE - 1)) > 3) {
  208. block_index = (block_buffer_head - 3) & (BLOCK_BUFFER_SIZE - 1);
  209. block_t *block[3] = { NULL, NULL, NULL };
  210. while(block_index != block_buffer_tail) {
  211. block_index = prev_block_index(block_index);
  212. block[2]= block[1];
  213. block[1]= block[0];
  214. block[0] = &block_buffer[block_index];
  215. planner_reverse_pass_kernel(block[0], block[1], block[2]);
  216. }
  217. }
  218. }
  219. // The kernel called by planner_recalculate() when scanning the plan from first to last entry.
  220. void planner_forward_pass_kernel(block_t *previous, block_t *current, block_t *next) {
  221. if(!previous) { return; }
  222. // If the previous block is an acceleration block, but it is not long enough to complete the
  223. // full speed change within the block, we need to adjust the entry speed accordingly. Entry
  224. // speeds have already been reset, maximized, and reverse planned by reverse planner.
  225. // If nominal length is true, max junction speed is guaranteed to be reached. No need to recheck.
  226. if (!previous->nominal_length_flag) {
  227. if (previous->entry_speed < current->entry_speed) {
  228. double entry_speed = min( current->entry_speed,
  229. max_allowable_speed(-previous->acceleration,previous->entry_speed,previous->millimeters) );
  230. // Check for junction speed change
  231. if (current->entry_speed != entry_speed) {
  232. current->entry_speed = entry_speed;
  233. current->recalculate_flag = true;
  234. }
  235. }
  236. }
  237. }
  238. // planner_recalculate() needs to go over the current plan twice. Once in reverse and once forward. This
  239. // implements the forward pass.
  240. void planner_forward_pass() {
  241. uint8_t block_index = block_buffer_tail;
  242. block_t *block[3] = { NULL, NULL, NULL };
  243. while(block_index != block_buffer_head) {
  244. block[0] = block[1];
  245. block[1] = block[2];
  246. block[2] = &block_buffer[block_index];
  247. planner_forward_pass_kernel(block[0],block[1],block[2]);
  248. block_index = next_block_index(block_index);
  249. }
  250. planner_forward_pass_kernel(block[1], block[2], NULL);
  251. }
  252. // Recalculates the trapezoid speed profiles for all blocks in the plan according to the
  253. // entry_factor for each junction. Must be called by planner_recalculate() after
  254. // updating the blocks.
  255. void planner_recalculate_trapezoids() {
  256. int8_t block_index = block_buffer_tail;
  257. block_t *current;
  258. block_t *next = NULL;
  259. while(block_index != block_buffer_head) {
  260. current = next;
  261. next = &block_buffer[block_index];
  262. if (current) {
  263. // Recalculate if current block entry or exit junction speed has changed.
  264. if (current->recalculate_flag || next->recalculate_flag) {
  265. // NOTE: Entry and exit factors always > 0 by all previous logic operations.
  266. calculate_trapezoid_for_block(current, current->entry_speed/current->nominal_speed,
  267. next->entry_speed/current->nominal_speed);
  268. current->recalculate_flag = false; // Reset current only to ensure next trapezoid is computed
  269. }
  270. }
  271. block_index = next_block_index( block_index );
  272. }
  273. // Last/newest block in buffer. Exit speed is set with MINIMUM_PLANNER_SPEED. Always recalculated.
  274. if(next != NULL) {
  275. calculate_trapezoid_for_block(next, next->entry_speed/next->nominal_speed,
  276. MINIMUM_PLANNER_SPEED/next->nominal_speed);
  277. next->recalculate_flag = false;
  278. }
  279. }
  280. // Recalculates the motion plan according to the following algorithm:
  281. //
  282. // 1. Go over every block in reverse order and calculate a junction speed reduction (i.e. block_t.entry_factor)
  283. // so that:
  284. // a. The junction jerk is within the set limit
  285. // b. No speed reduction within one block requires faster deceleration than the one, true constant
  286. // acceleration.
  287. // 2. Go over every block in chronological order and dial down junction speed reduction values if
  288. // a. The speed increase within one block would require faster accelleration than the one, true
  289. // constant acceleration.
  290. //
  291. // When these stages are complete all blocks have an entry_factor that will allow all speed changes to
  292. // be performed using only the one, true constant acceleration, and where no junction jerk is jerkier than
  293. // the set limit. Finally it will:
  294. //
  295. // 3. Recalculate trapezoids for all blocks.
  296. void planner_recalculate() {
  297. planner_reverse_pass();
  298. planner_forward_pass();
  299. planner_recalculate_trapezoids();
  300. }
  301. void plan_init() {
  302. block_buffer_head = 0;
  303. block_buffer_tail = 0;
  304. memset(position, 0, sizeof(position)); // clear position
  305. previous_speed[0] = 0.0;
  306. previous_speed[1] = 0.0;
  307. previous_speed[2] = 0.0;
  308. previous_speed[3] = 0.0;
  309. previous_nominal_speed = 0.0;
  310. }
  311. #ifdef AUTOTEMP
  312. void getHighESpeed()
  313. {
  314. static float oldt=0;
  315. if(!autotemp_enabled)
  316. return;
  317. if(degTargetHotend0()+2<autotemp_min) //probably temperature set to zero.
  318. return; //do nothing
  319. float high=0;
  320. uint8_t block_index = block_buffer_tail;
  321. while(block_index != block_buffer_head) {
  322. float se=block_buffer[block_index].steps_e/float(block_buffer[block_index].step_event_count)*block_buffer[block_index].nominal_rate;
  323. //se; units steps/sec;
  324. if(se>high)
  325. {
  326. high=se;
  327. }
  328. block_index = (block_index+1) & (BLOCK_BUFFER_SIZE - 1);
  329. }
  330. float g=autotemp_min+high*autotemp_factor;
  331. float t=g;
  332. if(t<autotemp_min)
  333. t=autotemp_min;
  334. if(t>autotemp_max)
  335. t=autotemp_max;
  336. if(oldt>t)
  337. {
  338. t=AUTOTEMP_OLDWEIGHT*oldt+(1-AUTOTEMP_OLDWEIGHT)*t;
  339. }
  340. oldt=t;
  341. setTargetHotend0(t);
  342. // SERIAL_ECHO_START;
  343. // SERIAL_ECHOPAIR("highe",high);
  344. // SERIAL_ECHOPAIR(" t",t);
  345. // SERIAL_ECHOLN("");
  346. }
  347. #endif
  348. void check_axes_activity() {
  349. unsigned char x_active = 0;
  350. unsigned char y_active = 0;
  351. unsigned char z_active = 0;
  352. unsigned char e_active = 0;
  353. block_t *block;
  354. if(block_buffer_tail != block_buffer_head) {
  355. uint8_t block_index = block_buffer_tail;
  356. while(block_index != block_buffer_head) {
  357. block = &block_buffer[block_index];
  358. if(block->steps_x != 0) x_active++;
  359. if(block->steps_y != 0) y_active++;
  360. if(block->steps_z != 0) z_active++;
  361. if(block->steps_e != 0) e_active++;
  362. block_index = (block_index+1) & (BLOCK_BUFFER_SIZE - 1);
  363. }
  364. }
  365. if((DISABLE_X) && (x_active == 0)) disable_x();
  366. if((DISABLE_Y) && (y_active == 0)) disable_y();
  367. if((DISABLE_Z) && (z_active == 0)) disable_z();
  368. if((DISABLE_E) && (e_active == 0)) { disable_e0();disable_e1();disable_e2(); }
  369. }
  370. float junction_deviation = 0.1;
  371. // Add a new linear movement to the buffer. steps_x, _y and _z is the absolute position in
  372. // mm. Microseconds specify how many microseconds the move should take to perform. To aid acceleration
  373. // calculation the caller must also provide the physical length of the line in millimeters.
  374. void plan_buffer_line(const float &x, const float &y, const float &z, const float &e, float feed_rate, const uint8_t &extruder)
  375. {
  376. // Calculate the buffer head after we push this byte
  377. int next_buffer_head = next_block_index(block_buffer_head);
  378. // If the buffer is full: good! That means we are well ahead of the robot.
  379. // Rest here until there is room in the buffer.
  380. while(block_buffer_tail == next_buffer_head) {
  381. manage_heater();
  382. manage_inactivity(1);
  383. LCD_STATUS;
  384. }
  385. // The target position of the tool in absolute steps
  386. // Calculate target position in absolute steps
  387. //this should be done after the wait, because otherwise a M92 code within the gcode disrupts this calculation somehow
  388. long target[4];
  389. target[X_AXIS] = lround(x*axis_steps_per_unit[X_AXIS]);
  390. target[Y_AXIS] = lround(y*axis_steps_per_unit[Y_AXIS]);
  391. target[Z_AXIS] = lround(z*axis_steps_per_unit[Z_AXIS]);
  392. target[E_AXIS] = lround(e*axis_steps_per_unit[E_AXIS]);
  393. // Prepare to set up new block
  394. block_t *block = &block_buffer[block_buffer_head];
  395. // Mark block as not busy (Not executed by the stepper interrupt)
  396. block->busy = false;
  397. // Number of steps for each axis
  398. block->steps_x = labs(target[X_AXIS]-position[X_AXIS]);
  399. block->steps_y = labs(target[Y_AXIS]-position[Y_AXIS]);
  400. block->steps_z = labs(target[Z_AXIS]-position[Z_AXIS]);
  401. block->steps_e = labs(target[E_AXIS]-position[E_AXIS]);
  402. block->step_event_count = max(block->steps_x, max(block->steps_y, max(block->steps_z, block->steps_e)));
  403. // Bail if this is a zero-length block
  404. if (block->step_event_count <=dropsegments) { return; };
  405. // Compute direction bits for this block
  406. block->direction_bits = 0;
  407. if (target[X_AXIS] < position[X_AXIS]) { block->direction_bits |= (1<<X_AXIS); }
  408. if (target[Y_AXIS] < position[Y_AXIS]) { block->direction_bits |= (1<<Y_AXIS); }
  409. if (target[Z_AXIS] < position[Z_AXIS]) { block->direction_bits |= (1<<Z_AXIS); }
  410. if (target[E_AXIS] < position[E_AXIS]) { block->direction_bits |= (1<<E_AXIS); }
  411. block->active_extruder = extruder;
  412. //enable active axes
  413. if(block->steps_x != 0) enable_x();
  414. if(block->steps_y != 0) enable_y();
  415. if(block->steps_z != 0) enable_z();
  416. // Enable all
  417. if(block->steps_e != 0) { enable_e0();enable_e1();enable_e2(); }
  418. float delta_mm[4];
  419. delta_mm[X_AXIS] = (target[X_AXIS]-position[X_AXIS])/axis_steps_per_unit[X_AXIS];
  420. delta_mm[Y_AXIS] = (target[Y_AXIS]-position[Y_AXIS])/axis_steps_per_unit[Y_AXIS];
  421. delta_mm[Z_AXIS] = (target[Z_AXIS]-position[Z_AXIS])/axis_steps_per_unit[Z_AXIS];
  422. delta_mm[E_AXIS] = (target[E_AXIS]-position[E_AXIS])/axis_steps_per_unit[E_AXIS];
  423. block->millimeters = sqrt(square(delta_mm[X_AXIS]) + square(delta_mm[Y_AXIS]) +
  424. square(delta_mm[Z_AXIS]) + square(delta_mm[E_AXIS]));
  425. float inverse_millimeters = 1.0/block->millimeters; // Inverse millimeters to remove multiple divides
  426. // Calculate speed in mm/second for each axis. No divide by zero due to previous checks.
  427. float inverse_second = feed_rate * inverse_millimeters;
  428. block->nominal_speed = block->millimeters * inverse_second; // (mm/sec) Always > 0
  429. block->nominal_rate = ceil(block->step_event_count * inverse_second); // (step/sec) Always > 0
  430. if (block->steps_e == 0) {
  431. if(feed_rate<mintravelfeedrate) feed_rate=mintravelfeedrate;
  432. }
  433. else {
  434. if(feed_rate<minimumfeedrate) feed_rate=minimumfeedrate;
  435. }
  436. #ifdef SLOWDOWN
  437. // slow down when de buffer starts to empty, rather than wait at the corner for a buffer refill
  438. int moves_queued=(block_buffer_head-block_buffer_tail + BLOCK_BUFFER_SIZE) & (BLOCK_BUFFER_SIZE - 1);
  439. if(moves_queued < (BLOCK_BUFFER_SIZE * 0.5) && moves_queued > 1) feed_rate = feed_rate*moves_queued / (BLOCK_BUFFER_SIZE * 0.5);
  440. #endif
  441. /*
  442. // segment time im micro seconds
  443. long segment_time = lround(1000000.0/inverse_second);
  444. if ((blockcount>0) && (blockcount < (BLOCK_BUFFER_SIZE - 4))) {
  445. if (segment_time<minsegmenttime) { // buffer is draining, add extra time. The amount of time added increases if the buffer is still emptied more.
  446. segment_time=segment_time+lround(2*(minsegmenttime-segment_time)/blockcount);
  447. }
  448. }
  449. else {
  450. if (segment_time<minsegmenttime) segment_time=minsegmenttime;
  451. }
  452. // END OF SLOW DOWN SECTION
  453. */
  454. // Calculate speed in mm/sec for each axis
  455. float current_speed[4];
  456. for(int i=0; i < 4; i++) {
  457. current_speed[i] = delta_mm[i] * inverse_second;
  458. }
  459. // Limit speed per axis
  460. float speed_factor = 1.0; //factor <=1 do decrease speed
  461. for(int i=0; i < 4; i++) {
  462. if(abs(current_speed[i]) > max_feedrate[i])
  463. speed_factor = min(speed_factor, max_feedrate[i] / abs(current_speed[i]));
  464. }
  465. // Max segement time in us.
  466. #ifdef XY_FREQUENCY_LIMIT
  467. #define MAX_FREQ_TIME (1000000.0/XY_FREQUENCY_LIMIT)
  468. // Check and limit the xy direction change frequency
  469. unsigned char direction_change = block->direction_bits ^ old_direction_bits;
  470. old_direction_bits = block->direction_bits;
  471. if((direction_change & (1<<X_AXIS)) == 0) {
  472. x_segment_time[0] += segment_time;
  473. }
  474. else {
  475. x_segment_time[2] = x_segment_time[1];
  476. x_segment_time[1] = x_segment_time[0];
  477. x_segment_time[0] = segment_time;
  478. }
  479. if((direction_change & (1<<Y_AXIS)) == 0) {
  480. y_segment_time[0] += segment_time;
  481. }
  482. else {
  483. y_segment_time[2] = y_segment_time[1];
  484. y_segment_time[1] = y_segment_time[0];
  485. y_segment_time[0] = segment_time;
  486. }
  487. long max_x_segment_time = max(x_segment_time[0], max(x_segment_time[1], x_segment_time[2]));
  488. long max_y_segment_time = max(y_segment_time[0], max(y_segment_time[1], y_segment_time[2]));
  489. long min_xy_segment_time =min(max_x_segment_time, max_y_segment_time);
  490. if(min_xy_segment_time < MAX_FREQ_TIME) speed_factor = min(speed_factor, speed_factor * (float)min_xy_segment_time / (float)MAX_FREQ_TIME);
  491. #endif
  492. // Correct the speed
  493. if( speed_factor < 1.0) {
  494. // Serial.print("speed factor : "); Serial.println(speed_factor);
  495. for(int i=0; i < 4; i++) {
  496. if(abs(current_speed[i]) > max_feedrate[i])
  497. speed_factor = min(speed_factor, max_feedrate[i] / abs(current_speed[i]));
  498. /*
  499. if(speed_factor < 0.1) {
  500. Serial.print("speed factor : "); Serial.println(speed_factor);
  501. Serial.print("current_speed"); Serial.print(i); Serial.print(" : "); Serial.println(current_speed[i]);
  502. }
  503. */
  504. }
  505. for(unsigned char i=0; i < 4; i++) {
  506. current_speed[i] *= speed_factor;
  507. }
  508. block->nominal_speed *= speed_factor;
  509. block->nominal_rate *= speed_factor;
  510. }
  511. // Compute and limit the acceleration rate for the trapezoid generator.
  512. float steps_per_mm = block->step_event_count/block->millimeters;
  513. if(block->steps_x == 0 && block->steps_y == 0 && block->steps_z == 0) {
  514. block->acceleration_st = ceil(retract_acceleration * steps_per_mm); // convert to: acceleration steps/sec^2
  515. }
  516. else {
  517. block->acceleration_st = ceil(acceleration * steps_per_mm); // convert to: acceleration steps/sec^2
  518. // Limit acceleration per axis
  519. if(((float)block->acceleration_st * (float)block->steps_x / (float)block->step_event_count) > axis_steps_per_sqr_second[X_AXIS])
  520. block->acceleration_st = axis_steps_per_sqr_second[X_AXIS];
  521. if(((float)block->acceleration_st * (float)block->steps_y / (float)block->step_event_count) > axis_steps_per_sqr_second[Y_AXIS])
  522. block->acceleration_st = axis_steps_per_sqr_second[Y_AXIS];
  523. if(((float)block->acceleration_st * (float)block->steps_e / (float)block->step_event_count) > axis_steps_per_sqr_second[E_AXIS])
  524. block->acceleration_st = axis_steps_per_sqr_second[E_AXIS];
  525. if(((float)block->acceleration_st * (float)block->steps_z / (float)block->step_event_count ) > axis_steps_per_sqr_second[Z_AXIS])
  526. block->acceleration_st = axis_steps_per_sqr_second[Z_AXIS];
  527. }
  528. block->acceleration = block->acceleration_st / steps_per_mm;
  529. block->acceleration_rate = (long)((float)block->acceleration_st * 8.388608);
  530. #if 0 // Use old jerk for now
  531. // Compute path unit vector
  532. double unit_vec[3];
  533. unit_vec[X_AXIS] = delta_mm[X_AXIS]*inverse_millimeters;
  534. unit_vec[Y_AXIS] = delta_mm[Y_AXIS]*inverse_millimeters;
  535. unit_vec[Z_AXIS] = delta_mm[Z_AXIS]*inverse_millimeters;
  536. // Compute maximum allowable entry speed at junction by centripetal acceleration approximation.
  537. // Let a circle be tangent to both previous and current path line segments, where the junction
  538. // deviation is defined as the distance from the junction to the closest edge of the circle,
  539. // colinear with the circle center. The circular segment joining the two paths represents the
  540. // path of centripetal acceleration. Solve for max velocity based on max acceleration about the
  541. // radius of the circle, defined indirectly by junction deviation. This may be also viewed as
  542. // path width or max_jerk in the previous grbl version. This approach does not actually deviate
  543. // from path, but used as a robust way to compute cornering speeds, as it takes into account the
  544. // nonlinearities of both the junction angle and junction velocity.
  545. double vmax_junction = MINIMUM_PLANNER_SPEED; // Set default max junction speed
  546. // Skip first block or when previous_nominal_speed is used as a flag for homing and offset cycles.
  547. if ((block_buffer_head != block_buffer_tail) && (previous_nominal_speed > 0.0)) {
  548. // Compute cosine of angle between previous and current path. (prev_unit_vec is negative)
  549. // NOTE: Max junction velocity is computed without sin() or acos() by trig half angle identity.
  550. double cos_theta = - previous_unit_vec[X_AXIS] * unit_vec[X_AXIS]
  551. - previous_unit_vec[Y_AXIS] * unit_vec[Y_AXIS]
  552. - previous_unit_vec[Z_AXIS] * unit_vec[Z_AXIS] ;
  553. // Skip and use default max junction speed for 0 degree acute junction.
  554. if (cos_theta < 0.95) {
  555. vmax_junction = min(previous_nominal_speed,block->nominal_speed);
  556. // Skip and avoid divide by zero for straight junctions at 180 degrees. Limit to min() of nominal speeds.
  557. if (cos_theta > -0.95) {
  558. // Compute maximum junction velocity based on maximum acceleration and junction deviation
  559. double sin_theta_d2 = sqrt(0.5*(1.0-cos_theta)); // Trig half angle identity. Always positive.
  560. vmax_junction = min(vmax_junction,
  561. sqrt(block->acceleration * junction_deviation * sin_theta_d2/(1.0-sin_theta_d2)) );
  562. }
  563. }
  564. }
  565. #endif
  566. // Start with a safe speed
  567. float vmax_junction = max_xy_jerk/2;
  568. if(abs(current_speed[Z_AXIS]) > max_z_jerk/2)
  569. vmax_junction = max_z_jerk/2;
  570. vmax_junction = min(vmax_junction, block->nominal_speed);
  571. if ((block_buffer_head != block_buffer_tail) && (previous_nominal_speed > 0.0)) {
  572. float jerk = sqrt(pow((current_speed[X_AXIS]-previous_speed[X_AXIS]), 2)+pow((current_speed[Y_AXIS]-previous_speed[Y_AXIS]), 2));
  573. if((previous_speed[X_AXIS] != 0.0) || (previous_speed[Y_AXIS] != 0.0)) {
  574. vmax_junction = block->nominal_speed;
  575. }
  576. if (jerk > max_xy_jerk) {
  577. vmax_junction *= (max_xy_jerk/jerk);
  578. }
  579. if(abs(current_speed[Z_AXIS] - previous_speed[Z_AXIS]) > max_z_jerk) {
  580. vmax_junction *= (max_z_jerk/abs(current_speed[Z_AXIS] - previous_speed[Z_AXIS]));
  581. }
  582. }
  583. block->max_entry_speed = vmax_junction;
  584. // Initialize block entry speed. Compute based on deceleration to user-defined MINIMUM_PLANNER_SPEED.
  585. double v_allowable = max_allowable_speed(-block->acceleration,MINIMUM_PLANNER_SPEED,block->millimeters);
  586. block->entry_speed = min(vmax_junction, v_allowable);
  587. // Initialize planner efficiency flags
  588. // Set flag if block will always reach maximum junction speed regardless of entry/exit speeds.
  589. // If a block can de/ac-celerate from nominal speed to zero within the length of the block, then
  590. // the current block and next block junction speeds are guaranteed to always be at their maximum
  591. // junction speeds in deceleration and acceleration, respectively. This is due to how the current
  592. // block nominal speed limits both the current and next maximum junction speeds. Hence, in both
  593. // the reverse and forward planners, the corresponding block junction speed will always be at the
  594. // the maximum junction speed and may always be ignored for any speed reduction checks.
  595. if (block->nominal_speed <= v_allowable) { block->nominal_length_flag = true; }
  596. else { block->nominal_length_flag = false; }
  597. block->recalculate_flag = true; // Always calculate trapezoid for new block
  598. // Update previous path unit_vector and nominal speed
  599. memcpy(previous_speed, current_speed, sizeof(previous_speed)); // previous_speed[] = current_speed[]
  600. previous_nominal_speed = block->nominal_speed;
  601. #ifdef ADVANCE
  602. // Calculate advance rate
  603. if((block->steps_e == 0) || (block->steps_x == 0 && block->steps_y == 0 && block->steps_z == 0)) {
  604. block->advance_rate = 0;
  605. block->advance = 0;
  606. }
  607. else {
  608. long acc_dist = estimate_acceleration_distance(0, block->nominal_rate, block->acceleration_st);
  609. float advance = (STEPS_PER_CUBIC_MM_E * EXTRUDER_ADVANCE_K) *
  610. (current_speed[E_AXIS] * current_speed[E_AXIS] * EXTRUTION_AREA * EXTRUTION_AREA)*256;
  611. block->advance = advance;
  612. if(acc_dist == 0) {
  613. block->advance_rate = 0;
  614. }
  615. else {
  616. block->advance_rate = advance / (float)acc_dist;
  617. }
  618. }
  619. /*
  620. SERIAL_ECHO_START;
  621. SERIAL_ECHOPGM("advance :");
  622. SERIAL_ECHO(block->advance/256.0);
  623. SERIAL_ECHOPGM("advance rate :");
  624. SERIAL_ECHOLN(block->advance_rate/256.0);
  625. */
  626. #endif // ADVANCE
  627. calculate_trapezoid_for_block(block, block->entry_speed/block->nominal_speed,
  628. MINIMUM_PLANNER_SPEED/block->nominal_speed);
  629. // Move buffer head
  630. block_buffer_head = next_buffer_head;
  631. // Update position
  632. memcpy(position, target, sizeof(target)); // position[] = target[]
  633. planner_recalculate();
  634. #ifdef AUTOTEMP
  635. getHighESpeed();
  636. #endif
  637. st_wake_up();
  638. }
  639. void plan_set_position(const float &x, const float &y, const float &z, const float &e)
  640. {
  641. position[X_AXIS] = lround(x*axis_steps_per_unit[X_AXIS]);
  642. position[Y_AXIS] = lround(y*axis_steps_per_unit[Y_AXIS]);
  643. position[Z_AXIS] = lround(z*axis_steps_per_unit[Z_AXIS]);
  644. position[E_AXIS] = lround(e*axis_steps_per_unit[E_AXIS]);
  645. st_set_position(position[X_AXIS], position[Y_AXIS], position[Z_AXIS], position[E_AXIS]);
  646. previous_nominal_speed = 0.0; // Resets planner junction speeds. Assumes start from rest.
  647. previous_speed[0] = 0.0;
  648. previous_speed[1] = 0.0;
  649. previous_speed[2] = 0.0;
  650. previous_speed[3] = 0.0;
  651. }
  652. void plan_set_e_position(const float &e)
  653. {
  654. position[E_AXIS] = lround(e*axis_steps_per_unit[E_AXIS]);
  655. st_set_e_position(position[E_AXIS]);
  656. }
  657. uint8_t movesplanned()
  658. {
  659. return (block_buffer_head-block_buffer_tail + BLOCK_BUFFER_SIZE) & (BLOCK_BUFFER_SIZE - 1);
  660. }