Browse Source

Correct Junction Deviation value for Formbot Raptors

Re-apply the formula .4 * V^2 / Default_Acceleration to work correctly in Raptor configuration.h file.
(The problem is there are multiple XJerk and YJerk values declared based on the step sticks used on the printer.)
This change should provide correct values for all setups.
Roxy-3D 5 years ago
parent
commit
c8e348731f
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      config/examples/Formbot/Raptor/Configuration.h

+ 1
- 1
config/examples/Formbot/Raptor/Configuration.h View File

867
  *   http://blog.kyneticcnc.com/2018/10/computing-junction-deviation-for-marlin.html
867
  *   http://blog.kyneticcnc.com/2018/10/computing-junction-deviation-for-marlin.html
868
  */
868
  */
869
 #if DISABLED(CLASSIC_JERK)
869
 #if DISABLED(CLASSIC_JERK)
870
-  #define JUNCTION_DEVIATION_MM 0.013 // (mm) Distance from real junction edge
870
+  #define JUNCTION_DEVIATION_MM (.4 * DEFAULT_YJERK * DEFAULT_YJERK / DEFAULT_ACCELERATION)  // (mm) Distance from real junction edge
871
 #endif
871
 #endif
872
 
872
 
873
 /**
873
 /**

Loading…
Cancel
Save