Maximum feedrate setting for each material
Posted: Sat Mar 26, 2016 1:41 pm
Hello,
Would it be possible to add a setting that allows us to set a maximum E feedrate, depending on what material you choose?
because for PLA I can extrude a lot faster than ABS.
Just setting a maximum XY speed isn't really the thing, because it's possible to print double as fast if you have only half the layer height.
Or in another case: if I do sparse infill every 2 layers, then the extruder pushes double the amount through the nozzle on the infill lines, but this should also half the speed then.
For now, I added this code in post processing:
which sets this maximum E feedrate, but it needs to be changed back to a higher value for each retraction, otherwise the retractions are really slow.
The overall idea for me is that the XY speeds will mostly be limited by the maximum E rate, so that I'm actually always extruding at a constant flowrate (except for travel moves)
Keeping the nozzle pressure more constant.
Kind regards
Would it be possible to add a setting that allows us to set a maximum E feedrate, depending on what material you choose?
because for PLA I can extrude a lot faster than ABS.
Just setting a maximum XY speed isn't really the thing, because it's possible to print double as fast if you have only half the layer height.
Or in another case: if I do sparse infill every 2 layers, then the extruder pushes double the amount through the nozzle on the infill lines, but this should also half the speed then.
For now, I added this code in post processing:
Code: Select all
{REPLACE "G92 E0" "M203 E1.5\nG92 E0"}
{REPLACE "G1 E-" "M203 E16\nG1 E-"}The overall idea for me is that the XY speeds will mostly be limited by the maximum E rate, so that I'm actually always extruding at a constant flowrate (except for travel moves)
Keeping the nozzle pressure more constant.
Kind regards