Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

extruder: Implement non-linear extrusion #4231

Closed
wants to merge 2 commits into from

Commits on Apr 30, 2021

  1. 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>
    Tobba committed Apr 30, 2021
    Configuration menu
    Copy the full SHA
    27acd85 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2021

  1. extruder: Flush step generation before changing non-linear extrusion …

    …parameters
    
    Signed-off-by: Tobias Haegermarck <tobias.haegermarck@gmail.com>
    Tobba committed May 24, 2021
    Configuration menu
    Copy the full SHA
    ef878f6 View commit details
    Browse the repository at this point in the history