Determine real nozzle diameter
-
@dc42 Can you explain a little bit why that is?
-
Ah, I should have paid more attention - the cube was solid, it didn't have a hole in it so there would only be one wall, not the two I was rambling on about earlier.
I sliced that test cube using 0.2mm layers and a wall line width of 0.5mm and the extrusion rate in the gcode was such that the amount extruded per mm would fill a rectangle 0.2mm x 0.505mm.
For a line width of 0.4mm the result was 0.2mm x 0.397mm.
Yeah, Cura PRs hang around for months. I'm afraid the Cura devs are all far too busy to pay much attention to contributions.
-
@wilriker said in Determine real nozzle diameter:
@dc42 Can you explain a little bit why that is?
Two reasons:
-
Die swell.
-
If you printed lines with a circular cross section, there would be no inter-layer adhesion. So you want the extrusion to be squashed vertically - which is why you always print with a layer height below the nozzle diameter. This squashing inevitably means that the extruded filament will expand widthways.
-
-
When the layer height is 0.2mm and the line width is 0.5mm. Cura extrudes an amount that corresponds to a rectangle 0.2 x 0.5. The height of the extrusion is constrained but the width isn't and so the runny plastic prefers to expand sideways rather than "fill the corners" of the cross section rectangle.
Compare these cross sections that are intended to have the same area:
---------------- | | | | | | ---------------- /--------------\ / \ | | \ / \ -------------/
I'm sure you get the idea.
-
@burtoogle Now I get it. Thanks for making this visual, that helped a lot. Also thanks @dc42 for mentioning "die swell" that explained the part why it is also wider when simply extruding into thin air.
Now, maybe you could answer one last question: my Cura is set to a line width of 0.4mm (which simply is the default when configuring a 0.4mm nozzle). Obviously 0.5mm is much wider than this. When I do the extruder calibration like described on the page that I linked in the first post, what width would I aim for then? If I go for 0.4mm I would have to reduce flow rate to 74% which seems ridiculous to me. Do you have any advise? (It may even be something like "ignore that nonsense as long as you are happy with your prints" )
-
I use a 0.4mm nozzle and almost always use a line width of 0.5mm for walls and maybe 0.6mm for infill. That's for 0.2mm layers. Sometimes, when I really have to fit a wall in a small gap I will reduce the wall line width but I really try to avoid using less than 0.5mm.
At the end of the day, what numbers you use are completely irrelevant as long as the print quality is acceptable. I am getting very nice quality prints using either PLA or PETG.
-
@burtoogle OK, that makes sense to me. But currently Cura is configured to 0.4mm line width and what actually comes out of my nozzle is 0.5mm - which means on two perimeters the wall already is 0.2mm wider than what Cura was planning to produce.
If I set Cura to 0.5mm line width now, it will probably extrude even more plastic that would make the walls thicker again.
I am basically very happy with my prints and so far I only had issues when printing holes where screws are supposed to tap in (this might be related to printer creating wider walls and thereby smaller holes than what Cura is planning).
But I am also very pedantic and would have my workflow configured consistently so that when I change something I know it will do what I expect.
Do you know any way how I can get this discrepancy fixed? -
Small holes are particularly problematic because the inside and outside radii of the wall differ so much. It effectively overextrudes inside of the wall's centre line and underextrudes outside of that centre line. I can't remember who did the work now but years ago someone came up with a scheme whereby the number of points used for the wall of a circular hole would reduce as the hole diameter got smaller. For really small holes, the wall ends up having just 3 points (i.e. it's a triangle). Holes a little larger have 4 points, and so on. It actually worked pretty well.
Here's the scad that does this:
module polyhole(h, d, taper = 1) { n = max(round(2 * d),3); r = (d / 2) / cos (180 / n); rotate([0,0,180]) cylinder(h = h, r1 = r, r2 = r * taper, $fn = n); }
-
@burtoogle I will try this SCAD module in my next print with holes (there will be a box for the Duet soon).
-
@burtoogle I think that might have been nophead
http://hydraraptor.blogspot.ca/2011/02/polyholes.html?m=1
http://hydraraptor.blogspot.ca/2014/06/why-slicers-get-dimensions-wrong.html?m=1
-
@phaedrux said in Determine real nozzle diameter:
@burtoogle I think that might have been nophead
Yes, I think you're right. I couldn't remember, sorry nophead.