-
Notifications
You must be signed in to change notification settings - Fork 780
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0b8b45b
commit 75b8986
Showing
4 changed files
with
50 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
tag: m0592 | ||
title: Nonlinear Extrusion Control | ||
brief: Get or set Nonlinear Extrusion parameters | ||
author: abortz, thinkyhead | ||
|
||
since: 2.2.0 | ||
requires: NONLINEAR_EXTRUSION | ||
group: motion | ||
|
||
codes: [ M592 ] | ||
|
||
parameters: | ||
- | ||
tag: A | ||
optional: true | ||
description: Set the Linear coefficient (Default 0.0) | ||
values: | ||
- | ||
type: float | ||
tag: coeff | ||
- | ||
tag: B | ||
optional: true | ||
description: Set the Quadratic coefficient (Default 0.0) | ||
values: | ||
- | ||
type: float | ||
tag: coeff | ||
- | ||
tag: C | ||
optional: true | ||
description: Set the Constant coefficient (Default 1.0) | ||
values: | ||
- | ||
type: float | ||
tag: coeff | ||
|
||
examples: | ||
- | ||
pre: Set Linear, Quadratic coefficients to 0.2, 0.3 | ||
code: M592 A0.2 B0.3 | ||
|
||
--- | ||
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. |