diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-01-31 15:29:16 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-02-06 12:17:50 -0500 |
commit | c24b7a7ef96b6c9770fdf4c821f5719892732033 (patch) | |
tree | 40c14b48c8366add20e94931ce8f309c2e49f56f /config/example.cfg | |
parent | 074495a13a07de0fd8d5418d3a4020030d130200 (diff) | |
download | kutter-c24b7a7ef96b6c9770fdf4c821f5719892732033.tar.gz kutter-c24b7a7ef96b6c9770fdf4c821f5719892732033.tar.xz kutter-c24b7a7ef96b6c9770fdf4c821f5719892732033.zip |
toolhead: Introduce "smoothed" acceleration during lookahead
Update the lookahead code to track both normal toolhead acceleration
as well as a pseudo acceleration to the point of deceleration. This
reduces the top speed of small zig-zag moves and it reduces printer
vibration during these moves.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/example.cfg')
-rw-r--r-- | config/example.cfg | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/example.cfg b/config/example.cfg index ce6a398d..3574cd44 100644 --- a/config/example.cfg +++ b/config/example.cfg @@ -240,6 +240,12 @@ max_velocity: 500 max_accel: 3000 # Maximum acceleration (in mm/s^2) of the toolhead (relative to the # print). This parameter must be specified. +#max_accel_to_decel: +# A pseudo acceleration (in mm/s^2) controlling how fast the +# toolhead may go from acceleration to deceleration. It is used to +# reduce the top speed of short zig-zag moves (and thus reduce +# printer vibration from these moves). The default is half of +# max_accel. max_z_velocity: 250 # For cartesian printers this sets the maximum velocity (in mm/s) of # movement along the z axis. This setting can be used to restrict |