Skip to content

Commit

Permalink
πŸ“ Apply M592 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Jun 10, 2024
1 parent 660a3ce commit 0404f81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _gcode/M592.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ parameters:

- tag: A
optional: true
description: Set the Linear coefficient (Default 0.0)
description: Set the Quadratic coefficient (Default 0.0)
values:
- type: float
tag: coeff

- tag: B
optional: true
description: Set the Quadratic coefficient (Default 0.0)
description: Set the Linear coefficient (Default 0.0)
values:
- type: float
tag: coeff
Expand All @@ -38,6 +38,6 @@ example:
code: M592 A0.2 B0.3

---
Get or set nonlinear extrusion parameters.
Get or set Nonlinear Extrusion parameters.

Nonlinear Extrusion adjusts the amount of extrusion based on the instantaneous velocity of extrusion, as a multiplier. The amount of extrusion is multiplied by `max(C, C + A*v + B*v^2)` where `v` is extruder velocity in mm/s. Only adjusts forward extrusions, since those are the ones affected by backpressure.
_Nonlinear Extrusion_ adjusts the amount of extrusion based on the instantaneous velocity of extrusion, as a multiplier. The amount of extrusion is multiplied by `max(C, A*v^2 + B*v + C)` where `v` is extruder velocity in mm/s. Only adjusts forward extrusions, since those are the ones affected by back-pressure.

0 comments on commit 0404f81

Please sign in to comment.