-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extruder: Implement non-linear extrusion
This allows klipper to compensate for slippage in the extruder at high back-pressures. When enabled through SET_NONLINEAR_EXTRUSION, or nonlinear_a/b in the configuration, the actual extrusion velocity will be modified to v(t) + A*v(t)^2 + B*v(t)^3 where v(t) is the requested velocity, and A/B the provided parameters. This is similar to RepRap's M592 command, except correctly applied to accelerating moves rather than simply scaling the distance of the entire move based on its average velocity. Signed-off-by: Tobias Haegermarck <tobias.haegermarck@gmail.com>
- Loading branch information
Showing
5 changed files
with
93 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters