Browse Source

Add formula for LIN_ADVANCE_K

With this formula, a start value for K for further fine-calibration can be calculated.
Sebastianv650 8 years ago
parent
commit
599649e45d
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      Marlin/Configuration_adv.h

+ 6
- 1
Marlin/Configuration_adv.h View File

@@ -503,7 +503,12 @@
503 503
 
504 504
 // Implementation of a linear pressure control
505 505
 // Assumption: advance = k * (delta velocity)
506
-// K=0 means advance disabled. A good value for a gregs wade extruder will be around K=75
506
+// K=0 means advance disabled.
507
+// To get a rough start value for calibration, measure your "free filament length" between the hobbed bolt and the nozzle in cm.
508
+// Then use the formula that fits your system, where L is the "free filament length":
509
+// Filament diameter           |   1,75mm  |    3mm     |
510
+// Stiff filament (PLA)        | K=47*L/10 | K=139*L/10 |
511
+// Softer filament (ABS, nGen) | K=88*L/10 | K=260*L/10 |
507 512
 //#define LIN_ADVANCE
508 513
 
509 514
 #if ENABLED(LIN_ADVANCE)

Loading…
Cancel
Save