8

I'm working on building a tool to generate G-code (a simpler slicer), and I'm trying to calculate how much filament should be extruded per movement.

Is there a standard calculation for this? Something like:

layer height * flow % * extruder diameter * distance 

How does Ultimaker Cura calculate this?

0scar
  • 37,708
  • 12
  • 68
  • 156
t. gl.
  • 83
  • 1
  • 3

1 Answers1

11

Basically, all movements are (small) straight lines, the volume of a straight line is easily calculated as you already guessed.

To calculate the volume to be extruded you multiply the following parameters:

  • the layer height (h)
  • flow modifier (e.g. as percentage) (SF)
  • extruder nozzle diameter (dn) (or extruder line width if different from nozzle diameter)
  • distance of the straight line (l)

With this volume you can calculate how much filament you need to extrude. To get the length (thus the length defined by the E parameter), divide the obtained volume by surface area of your used filament by:

  • π * (filament radius)2 or alternatively π /4 * (filament diameter)2 = (π /4 * df2)

To sum up, the value of E is given by:

$$ E_{value} = \frac{h \times {SF} \times d_{n} \times l}{\frac{\pi}{4}d_{f}^2} = \frac{4 \times h \times {SF} \times d_{n} \times l}{\pi \times d_{f}^2} $$

0scar
  • 37,708
  • 12
  • 68
  • 156