tinkergnome 927
On 6/8/2020 at 8:33 PM, qwewer said:where can it be found in the GitHub files?
It's not as simply as one might guess - these function(s) are probably a good starting point:
void GCodeExport::writeExtrusion
https://github.com/Ultimaker/CuraEngine/blob/master/src/gcodeExport.cpp
Recommended Posts
GregValiant 1,354
It's the ratio of filament in vs extrusion out multiplied by the length of the extrusion
Given a line width of .4 and a layer height of .2 and filament diameter of 1.75 it's 1mm filament / 30mm extrusion (2.4/.08) and inversely 1mm of extrusion would require .033mm of filament. That makes a base line for Cura of 100% flow volume. Simplyfy3d considers that the area under the nozzle will never be an exact rectangle, but will have curved sides. Simplyfy3d uses a fudge factor of 1.2 when calculating the area under the nozzle (so .08mm^2 becomes .096mm^2 in Simplyfy3d calculations).
I have no idea where it is on GitHub.
Link to post
Share on other sites