klipper_estimator is a tool for determining the time a print will take using
the Klipper firmware. Currently it provides the following modes:
estimatemode outputs detailed statistics about a print jobpost-processmode can be used as a Slicer post-processing script, updating the gcode output file with corrected time estimates.dump-movesmode dumps planning data for every move in a file
The estimation is done using an implementation of Klippers kinematics, but may in some cases be slightly off due to rounding modes. If the timing is far off(e.g. more than a minute over a >12 hour print), this is considered a bug.
Note that currently delta kinematic limits are not implemented.
Basic usage info can be found by running klipper_estimator with no arguments.
In order to provide accurate times, klipper_estimator needs printer settings
including maximum velocity, acceleration, etc. It can take these either from a
config file(--config_file option) or grab them directly from Moonraker(using
the --config_moonraker_url option). Note that the Klipper configuration files
cannot be used directly.
To experiment with settings, one can use the dump-config command together with
--config_moonraker_url to generate a config file based on the current printer
settings. The config file can then be modified and used as input for the other
commands.
To dump a config, use e.g.:
$ ./klipper_estimator --config_moonraker_url http://192.168.0.21 dump-config > config.json
The config file format is Hjson and thus allows normal JSON with some extensions(see https://hjson.github.io/).
After generating a config, one can use this in other commands like so:
$ ./klipper_estimator --config_file config.json estimate ...
Estimation mode is useful for determining statistics about a print, in order to optimize print times. It gives a high level summary.
Basic usage:
$ ./klipper_estimator [config options] estimate ~/3DBenchy.data
Sequences:
Run 0:
Total moves: 42876
Total distance: 73313.01640025008
Total extrude distance: 3407.877500000097
Minimal time: 1h29m9.948s (5349.947936969622)
Average flow: 1.5321468696371368 mm3/s
Phases:
Acceleration: 27m4.291s
Cruise: 35m1.116s
Deceleration: 27m4.291s
Moves:
Layer times:
0 => 2.536s
... [some lines omitted for brevity]
48 => 4.834s
Kind times:
4m23.463s => FILL
2.639s => Other
18m0.185s => SOLID-FILL
28m29.706s => WALL-INNER
38m13.706s => WALL-OUTER
You can quickly override some basic config file settings using the config override flags
Examples of override flags:
./klipper_estimator [config options] estimate ~/3DBenchy.data --override max_acceleration:15000
./klipper_estimator [config options] estimate ~/3DBenchy.data --override max_accel:15000 --override velocity:500
./klipper_estimator [config options] estimate ~/3DBenchy.data -o accel:15000 -o vel:500
Available flags and aliases
"max_acceleration", "max_accel", "accel"
"max_accel_to_decel", "accel_to_decel", "a2d"
"max_velocity", "velocity", "max_vel", "vel"
"square_corner_velocity", "scv", "SCV", "sqv", "SQV"
"instant_corner_velocity", "icv", "ICV"
The calculations are done based only on the commands found in the file, with no
regards for macro expansions. This means that print_start type macros will
count as zero seconds, as well heat up times, homing, etc. Therefore the time
output should be considered a "minimal time", assuming these extra factors take
no time.
In post-process mode klipper_estimator directly modifies the filename passed
in in-place, updating time estimations in the file.
When using klipper_estimator in post-process mode, simply add a
post-processing script in your slicer like so:
/path/to/klipper_estimator --config_moonraker_url http://192.168.0.21 post-process
Change the path and config options to fit your situation.
Currently the following slicers are supported:
- PrusaSlicer
- SuperSlicer
- ideaMaker
- Cura
In PrusaSlicer and SuperSlicer Post-processing scripts are set in Output Options under Print Settings:
The dump-moves mode is used like estimate mode, but instead of providing a
summary, move planning data is dumped for every move.
klipper_estimator is written in Rust. Version 1.58 or newer is required to
compile the tool. Assuming a Rust toolchain is installed, along with git, one
can build klipper_estimator by running:
$ git clone https://github.com/dalegaard/klipper_estimator.git
$ cd klipper_estimator
$ cargo build --release
// Resulting binary will be at `target/release/klipper_estimator`(.exe on Windows)
Binaries are provided for Windows, Linux, Mac OS X, and Raspberry Pi targets.
These can be found under the Releases section.
This project is in no way endorsed by the Klipper project. Please do not direct any support requests to the Klipper project.
- Klipper by Kevin O'Connor
- Moonraker by Arksine
