<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Undersized circles - Has this been solved yet?</title>
        <description>Hi everyone!

I&#039;ve managed to get my Prusa i2 printing pretty smoothly, however one issue still exists. I cannot get circles to print out to be the correct size. I created a circle test plate with holes ranging from 12mm to 3mm, and all holes are coming out small by a pretty fairly consistent measurement of 0.7mm under.

i.e. (12mm = 11.3mm actual ID, 11mm = 10.3mm actual ID...etc)

[b]My current setup is:[/b]
-Prusa i2
-Slic3r
-Repetier
-MK2 Heatbed
-Sanguinololu Board (I believe 1.2 or 1.3)
-Marlin Firmware
-Geared Extruder
-Prusa Nozzle Hotend, 0.4mm
-3mm PLA Filament


The issue only seems to happen when drawing a circle on the X-Y plane. Outer diameter dimensions of circles and parts seem to be pretty well spot on.

I have come across the issue in searches, however most people seem to just say &quot;drill it out&quot; to whoever asked.... I would like to know if there&#039;s a way I can just make the part print the way it was designed?

[b]Attempted Solutions/What I&#039;ve tried[/b]
-Recalibrating the steppers by measurement, also by the online calculator
-Tightened down hardware, gears, etc
-Played with Slic3r&#039;s extrusion width values for perimeters (I tried 70%, 50%, and 30%).
-Designed a part with a 15.8mm hole, and it indeed printed out to just about 15mm actual I.D.

My thought is that simply there is too much filament being dumped on the outer perimeter, which is causing the circle to &quot;cave in&quot; on itself. I think this is going on because of the consistency of the error when measuring. All other aspects of the print seem to be working great.

Has anyone else had this issue? How has it been solved?

All input is appreciated, thank you!
-Pat</description>
        <link>https://reprap.org/forum/read.php?262,407139,407139#msg-407139</link>
        <lastBuildDate>Fri, 07 Aug 2026 21:45:24 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,744743#msg-744743</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,744743#msg-744743</link>
            <description><![CDATA[ .stl should be abandoned in favor of .amf<br />
G2/G3 only makes sense based on the .amf format]]></description>
            <dc:creator>nokian</dc:creator>
            <category>Printing</category>
            <pubDate>Thu, 02 Feb 2017 15:03:59 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,744620#msg-744620</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,744620#msg-744620</link>
            <description><![CDATA[ Hey, this Bresenham's algorithm is indeed a very nice piece of work, I didn't knew this before. This would speed up the calculation of ellipse or circle parts on weak 8 bit processors a lot.<br />
So the main problem remains: In the 3D models there are circles. This information needs to reach the 3D printer, but this will not work with STL files.]]></description>
            <dc:creator>Inhumierer</dc:creator>
            <category>Printing</category>
            <pubDate>Thu, 02 Feb 2017 08:49:19 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,744472#msg-744472</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,744472#msg-744472</link>
            <description><![CDATA[ If you Google for Bresenham's ellipse drawing algorithm, you'll see its possible to do these operations without any trig or even FP calculations.<br />
<br />
Most 3D printer firmware already supports the <a href="http://reprap.org/wiki/G-code#G2_.26_G3:_Controlled_Arc_Move" target="_blank"  rel="nofollow">G2 &amp; G3 arc drawing commands</a>. I'm not sure how well they do this -- IIRC some software just turns these into G1 commands of about a mm each, rather than into steps or microsteps.<br />
<br />
However, slicers (mostly) don't generate G2/G3 commands, because they (mostly) work from .STL files which represent meshes of straight lines. A slicer would have to somehow figure out whether a series of straight lines represent a curve or not, and what that curve ought to be. The information about the curve has already been lost. So a different file format is needed which represents arcs as well as straight lines.]]></description>
            <dc:creator>frankvdh</dc:creator>
            <category>Printing</category>
            <pubDate>Wed, 01 Feb 2017 21:49:06 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,744051#msg-744051</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,744051#msg-744051</link>
            <description><![CDATA[ The 3D printer firmware has to convert any (part of a) circle into small linear movements anyway, if those arc codes are used. The circle is split into a number of linear parts, and with increasing this number, the closer the result will be at the real circle. Having all the extruded filament exactly on this circle would need infinitive parts, which is not possible. The more parts/segments, the closer you get to the circle.<br />
<br />
If the printer firmware has to do this, the GCode will be way smaller, but the firmware has to do lots of trigonometric calculations. And those typically used processors like ATMega something are no really good choice for doing maths. I haven't checked this out completely, but for a quick glance, if the printer sets a point to print in an arc, there has to be done at least one sinus and one cosinus calculation, and I know these are heavy duty crunching numbers operations. It would be interesting how many sin/cos calculations per second an ATMega can do at 16 or 20 MHz.<br />
<br />
On the other side, if the slicer does the work and approximates "perfect" circles by increasing the line count, this massively increases GCode size. The data transfer rate from the SD card will probably be high enough, and (I assume) the high BAUD rate of the USB connection is still high enough to compensate this. But anyway some more numbers and tests would be interesting. If my time allows me to do, I'll do some trigonometric performace testing with Arduino Mega boards.<br />
<br />
Circles don't live in STL files, that's a fact (as far as I know). In a resume I do see two problems: If there is a circle or cylinder in a 3D object, the 3D designing software needs a way to tell the slicer "Hey, this is a circle, so treat it as a circle!"<br />
<br />
If the slicer recognises a circle, it has to decide to either approximate the circle by linear movement on it's own, or let the printer firmare do the job. In this case I'd rely on the slicer more than on the printer firmware, but we have to make the slicers know about arcs.]]></description>
            <dc:creator>Inhumierer</dc:creator>
            <category>Printing</category>
            <pubDate>Tue, 31 Jan 2017 13:25:22 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,744036#msg-744036</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,744036#msg-744036</link>
            <description><![CDATA[ The slic3r --gcode-arcs option (the post-processor you mentioned) is the only arc option in open source slicers available today or?<br />
I'm curious how it can increase the dimensional accuracy of holes.<br />
<br />
[<a href="https://www.reddit.com/r/3Dprinting/comments/3brwvu/vector_printing_g2g3_arcs_vs_g1/" target="_blank"  rel="nofollow">www.reddit.com</a>]]]></description>
            <dc:creator>nokian</dc:creator>
            <category>Printing</category>
            <pubDate>Tue, 31 Jan 2017 12:00:17 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,737519#msg-737519</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,737519#msg-737519</link>
            <description><![CDATA[ What's really needed is a file format like AMF [<a href="https://en.wikipedia.org/wiki/Additive_Manufacturing_File_Format" target="_blank"  rel="nofollow">en.wikipedia.org</a>] which allows curved triangles to be supported by CAD design software and by slicers. Current slicers work with mesh files (e.g. .STL) which describe objects as flat surfaces, so any curve must be represented as a series of straight lines. Some slicers (e.g. Slic3r) can convert straight lines (back) to arcs, and there is a post-processor that can do that too [<a href="https://github.com/alexrj/Slic3r/issues/23" target="_blank"  rel="nofollow">github.com</a>]. However, the quality of the resultant arc will depend on the fineness of the mesh and the errors allowed by the slicer software in deciding whether a point is on an arc or not. Only some firmware can print arcs directly using the G2/G3 codes [<a href="http://reprap.org/wiki/G-code#G2_.26_G3:_Controlled_Arc_Move" target="_blank"  rel="nofollow">reprap.org</a>].]]></description>
            <dc:creator>frankvdh</dc:creator>
            <category>Printing</category>
            <pubDate>Tue, 10 Jan 2017 17:51:59 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,737502#msg-737502</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,737502#msg-737502</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Farnomat</strong><br />
I don't know if somebody already suggested this, but if the holes are constantly too small (for example always .5mm), there's a setting called "Dimensional Accuracy" or "horizontal size compensation" or smth. like that in most of the slicers. If your holes are always .5mm too small, try typing in -0.25mm (so just half of the amount that they are too small) If your holes are too big then do the same but with positive values.</div></blockquote>
<br />
You have to be careful with that setting as it affects the entire part and not just the holes.]]></description>
            <dc:creator>PDBeal</dc:creator>
            <category>Printing</category>
            <pubDate>Tue, 10 Jan 2017 16:24:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,737452#msg-737452</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,737452#msg-737452</link>
            <description><![CDATA[ I don't know if somebody already suggested this, but if the holes are constantly too small (for example always .5mm), there's a setting called "Dimensional Accuracy" or "horizontal size compensation" or smth. like that in most of the slicers. If your holes are always .5mm too small, try typing in -0.25mm (so just half of the amount that they are too small) If your holes are too big then do the same but with positive values.]]></description>
            <dc:creator>Farnomat</dc:creator>
            <category>Printing</category>
            <pubDate>Tue, 10 Jan 2017 13:43:16 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,737404#msg-737404</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,737404#msg-737404</link>
            <description><![CDATA[ Nokian,<br />
<br />
No not polygons. I was printing some gears to fit on special axles. The axles are basically circular but have three flats on them to prevent the gears rotating on the axle.]]></description>
            <dc:creator>Supermec</dc:creator>
            <category>Printing</category>
            <pubDate>Tue, 10 Jan 2017 11:59:42 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,737371#msg-737371</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,737371#msg-737371</link>
            <description><![CDATA[ @PDBeal: Nice to know that switching to cura can be a solution. I tried cura a year ago and it was so much slower than the current version.<br />
@Supermec: Thanks for the formulas. Do you mean polygons by non-circular holes?]]></description>
            <dc:creator>nokian</dc:creator>
            <category>Printing</category>
            <pubDate>Tue, 10 Jan 2017 10:32:11 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,736768#msg-736768</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,736768#msg-736768</link>
            <description><![CDATA[ The problem has been acknowledged for some time now, and I have two formulae that I acquired from a professional 3d printing firm. I can't remember who they were now, as I didn't make a note at the time.<br />
<br />
They suggested that where X mm was the required diameter of the hole then Y mm was the dimension needed to achieve it and that:<br />
<br />
a) for vertical holes Y = 1.0155X + 0.2795 mm<br />
<br />
b) for horizontal holes Y = 0.9927X + 0.3602 mm<br />
<br />
These figures were for PLA, and as I understand it, they take into account various factors including the fact that the inside of the hole is unrestrained against shrinkage.<br />
<br />
Have a look and see how they compare with what you have found. I have had success with these in sizing non-circular holes to accept metal rods as a tight fit.]]></description>
            <dc:creator>Supermec</dc:creator>
            <category>Printing</category>
            <pubDate>Sun, 08 Jan 2017 15:49:49 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,736735#msg-736735</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,736735#msg-736735</link>
            <description><![CDATA[ I've had much better luck producing accurate holes when printing with files sliced by Cura 2.3.1.  My hole dimensions are still on the small side, but the tolerances in my parts are more than enough for this to work.  I've not had to drill out any holes since switching to Cura 2.3.1 from slic3r.<br />
<br />
On a side note, I have noticed my holes are more accurate on the machines with a direct drive than they are with the bowden tube setup.  I'm assuming this is probably due to the flex of the filament inside the bowden tube.]]></description>
            <dc:creator>PDBeal</dc:creator>
            <category>Printing</category>
            <pubDate>Sun, 08 Jan 2017 13:31:07 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,736730#msg-736730</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,736730#msg-736730</link>
            <description><![CDATA[ Any update or solution to this problem?]]></description>
            <dc:creator>nokian</dc:creator>
            <category>Printing</category>
            <pubDate>Sun, 08 Jan 2017 13:23:27 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,692610#msg-692610</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,692610#msg-692610</link>
            <description><![CDATA[ I've noticed on one machine I'm running a 0.3 nozzle vs the 0.4 nozzle on my other machine, and the 0.3 nozzle seems to be capable of doing my exact hole dimensions.  If I draw a 4.3mm hole in my object, I'm measuring 4.34 on my calipers.  Ofcourse, with the 0.3 nozzle, I am running about 10mm/s slower which is probably a contributing factor.<br />
<br />
At work we have a Stratasys uPrint SE Plus, and it does exact dimensions so it is possible for the FDM machine to be capable of printing exact dimensions on holes and parts, but I have not been able to figure out without disassembly of what nozzle size this machine is using.]]></description>
            <dc:creator>PDBeal</dc:creator>
            <category>Printing</category>
            <pubDate>Fri, 29 Jul 2016 10:44:06 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,684493#msg-684493</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,684493#msg-684493</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>PDBeal</strong><br />
Wouldn't the width be different depending on how much filament is hanging from your hotend, as it gets longer, I'd imagine gravity will pull it down more so than if it was fresh out of the nozzle.  I've also seen right as it starts to extruder in mid air it begins to overlap itself at first and then finally begin to fall slowly which in turn would also affect the width of the extruded filament.<br />
<br />
I wonder if it wouldn't be better to have a given gcode string to extrude a known line on the bed and measure that rather than extruding in mid air.</div></blockquote>
<br />
<br />
Honestly just try it, extrude 300mm to 500mm (extruded length) and measure a few spots, it will be remarkable consistent. This is the die swell factor. <br />
<br />
Rather than a single line on the bed you would be better to print a single wall cube and measure the wall thickness for each layer thickness you commonly use, this factors in the "squish" spread. This doesn't take into account path overlap that slicers will have when doing multiple perimeters.<br />
<br />
I only suggested checking the free air die swell as this has been remarkable consistent in determining how much smaller the inside diameter will be (for me).... the whole polygonal hole is also a factor.]]></description>
            <dc:creator>aussiephil</dc:creator>
            <category>Printing</category>
            <pubDate>Wed, 06 Jul 2016 03:07:11 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,684451#msg-684451</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,684451#msg-684451</link>
            <description><![CDATA[ Wouldn't the width be different depending on how much filament is hanging from your hotend, as it gets longer, I'd imagine gravity will pull it down more so than if it was fresh out of the nozzle.  I've also seen right as it starts to extruder in mid air it begins to overlap itself at first and then finally begin to fall slowly which in turn would also affect the width of the extruded filament.<br />
<br />
I wonder if it wouldn't be better to have a given gcode string to extrude a known line on the bed and measure that rather than extruding in mid air.]]></description>
            <dc:creator>PDBeal</dc:creator>
            <category>Printing</category>
            <pubDate>Tue, 05 Jul 2016 22:03:52 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,684152#msg-684152</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,684152#msg-684152</link>
            <description><![CDATA[ Everyone seems to ignore the actual filament extruded width. <br />
To even get a handle on hole size issues once you have the rest of the machine calibrated you need to measure the diameter of the filament extruded into free air.<br />
I have found for ABS on a range of nominally 0.4mm nozzles that I constantly get 0.58-0.60mm. This is 0. to 0.12 larger than the slicer set width.<br />
As slicers set their paths based on the set extrusion width any actual width will be reflected in the internal sizing of things like holes.<br />
<br />
Other people may get different results from their nozzles and this is why you should measure.]]></description>
            <dc:creator>aussiephil</dc:creator>
            <category>Printing</category>
            <pubDate>Mon, 04 Jul 2016 21:03:58 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,683949#msg-683949</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,683949#msg-683949</link>
            <description><![CDATA[ And yet  holes are printed undersized. Why Slicer haven't any settings for compensation where people can set compensation parameters for holes?]]></description>
            <dc:creator>Blisk</dc:creator>
            <category>Printing</category>
            <pubDate>Mon, 04 Jul 2016 07:45:47 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,607911#msg-607911</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,607911#msg-607911</link>
            <description><![CDATA[ The "runners on a track" is a good analogy. And actually, if holes are always a fixed amount too small (0.5 mm, etc), then it seems not too hard to program a slicer to just simply always oversize holes by that amount. And that amount can be a user settable variable.]]></description>
            <dc:creator>RRuser</dc:creator>
            <category>Printing</category>
            <pubDate>Mon, 11 Jan 2016 02:28:00 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,607905#msg-607905</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,607905#msg-607905</link>
            <description><![CDATA[ Someone did add a fix to the "Track Width/Area" problem for slic3r way back in 2012 however it was removed due to non-circular holes printing out too large. I think it would have been a better option to just have that setting as an option that we can tweak. Perhaps if we make enough noise we can get the slic3r developers to put it back in as an optional setting.]]></description>
            <dc:creator>henryx7</dc:creator>
            <category>Printing</category>
            <pubDate>Mon, 11 Jan 2016 02:09:21 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,474875#msg-474875</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,474875#msg-474875</link>
            <description><![CDATA[ Part of the problem is the fact that holes are polygons, not circles.  The STL file is made up of triangles, so you don't print a round hole, you print a polygonal hole.  <br />
<br />
You might get better results if you start with a higher resolution STL file.  If you're going to calibrate yourself for adjusting designed hole sizes to compensate for the printer's errors, you should probably standardize on one STL file resolution,otherwise you're going to be getting different results from different CAD files.<br />
<br />
This is one of the reasons why 3D printers are not consumer products yet.  It takes a lot of arcane knowledge to get a printer to produce quality prints.]]></description>
            <dc:creator>the_digital_dentist</dc:creator>
            <category>Printing</category>
            <pubDate>Mon, 23 Feb 2015 21:15:48 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,474283#msg-474283</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,474283#msg-474283</link>
            <description><![CDATA[ Here, this is a link to the hole size chart I designed and it's what I use to design my parts. [<a href="http://www.thingiverse.com/thing:242437" target="_blank"  rel="nofollow">www.thingiverse.com</a>]]]></description>
            <dc:creator>tmorris9</dc:creator>
            <category>Printing</category>
            <pubDate>Sun, 22 Feb 2015 17:43:10 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,474282#msg-474282</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,474282#msg-474282</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>pistolero</strong><br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>DinoK</strong><br />
I wrote more detailed article about it on the blog. <br />
...<br />
To sum it up, everybody can do it, you just have to fine tune the printer :)</div></blockquote>
<br />
<br />
I've read your post dozens of times, but still don't understand what to do to make my Kossel print holes with exact internal diameters.<br />
<br />
I'm printing with PLA now, 200C, 60mm/s. Shell thickness is a double of nozzle diameter (2*0.4mm=0.8mm) and layer height is 0.2mm.<br />
<br />
I've tried bigger shell thickness and 0.1mm layers and other temperatures, but regardless of the settings my holes (either round or square) are printed smaller than needed by ~0.5mm.<br />
<br />
<br />
This is blocker for me. I'm trying to print engineering parts and precise dimensions are required for assembly. <br />
<br />
Any help how to teach my Kossel mini to print holes with exact diameters would be appreciated .</div></blockquote>
<br />
<br />
<b>With an FDM machine it's just not going to happen</b>. At least not yet. It's not your machines fault but the nature of the plastic and how it expands and shrinks. The best we can hope for is a slic3r that figures out how to compensate for the problem but even then it's going to be different on every printer and every filament type / brand. <br />
<br />
So, the best you can currently do is either design the parts with slightly larger holes (print a reference hole chart then measure) or drill out holes after printing. Or, wait until the technology matures quite a bit and a solution is found.]]></description>
            <dc:creator>tmorris9</dc:creator>
            <category>Printing</category>
            <pubDate>Sun, 22 Feb 2015 17:40:56 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,474109#msg-474109</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,474109#msg-474109</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>DinoK</strong><br />
I wrote more detailed article about it on the blog. <br />
...<br />
To sum it up, everybody can do it, you just have to fine tune the printer :)</div></blockquote>
<br />
<br />
I've read your post dozens of times, but still don't understand what to do to make my Kossel print holes with exact internal diameters.<br />
<br />
I'm printing with PLA now, 200C, 60mm/s. Shell thickness is a double of nozzle diameter (2*0.4mm=0.8mm) and layer height is 0.2mm.<br />
<br />
I've tried bigger shell thickness and 0.1mm layers and other temperatures, but regardless of the settings my holes (either round or square) are printed smaller than needed by ~0.5mm.<br />
<br />
<br />
This is blocker for me. I'm trying to print engineering parts and precise dimensions are required for assembly. <br />
<br />
Any help how to teach my Kossel mini to print holes with exact diameters would be appreciated .]]></description>
            <dc:creator>pistolero</dc:creator>
            <category>Printing</category>
            <pubDate>Sun, 22 Feb 2015 11:52:32 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,415930#msg-415930</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,415930#msg-415930</link>
            <description><![CDATA[ why dont you print at 1.05% size and let us know how you go.<br />
you may have to account for shrinkage.]]></description>
            <dc:creator>pushthatbolder</dc:creator>
            <category>Printing</category>
            <pubDate>Sun, 05 Oct 2014 21:11:31 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,415929#msg-415929</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,415929#msg-415929</link>
            <description><![CDATA[ Ok , I finally found some time to dive into this and managed to get the perfect prints (tu).<br />
I am getting the prints within 0.05mm of the target size which seemed imposible before. I wrote <a href="http://www.deltarap.org/printing-undersized-holes/" target="_blank"  rel="nofollow">more detailed article</a> about it on the blog. <br />
Redhatman, I used your STL file and <a href="https://www.youmagine.com/designs/circles-and-squares-test-plates" target="_blank"  rel="nofollow">published it on Youmagine</a>, hope you don't mind. I also made my own test STL files with squares and circles.<br />
To sum it up, everybody can do it, you just have to fine tune the printer :)<br />
<br />
<div id="div_6df05b8a9a6b4157065cc3cf5cfa4584"
     class="mod_embed_images_extended"
     style="width:533px">

  

    
      
    

    <div id="imagediv_6df05b8a9a6b4157065cc3cf5cfa4584" class="mod_embed_images_image"
         style="width:533px; height:400px">

    

    <a href="http://c3.staticflickr.com/3/2945/15266379347_b9ee0d5908_b.jpg">
        <img src="/forum/thumbcache/e64/03c/fe6/d80/4ae/30b/499/e76/ee0/763/c0_800x400.png"
             width="533"
             height="400"
             id="image_6df05b8a9a6b4157065cc3cf5cfa4584"
             alt="15266379347_b9ee0d5908_b.jpg"
             title="15266379347_b9ee0d5908_b.jpg"/>
    </a>

    

    </div>

    <div class="mod_embed_images_info " id="info_6df05b8a9a6b4157065cc3cf5cfa4584"
      style="display:block">
      <a id="link_6df05b8a9a6b4157065cc3cf5cfa4584" href="http://c3.staticflickr.com/3/2945/15266379347_b9ee0d5908_b.jpg">15266379347_b9ee0d5908_b.jpg</a>
    </div>

  

 </div>


<script type="text/javascript">
mod_embed_images_loadimage('6df05b8a9a6b4157065cc3cf5cfa4584', '/forum/thumbcache/e64/03c/fe6/d80/4ae/30b/499/e76/ee0/763/c0_800x400.png', 'http://c3.staticflickr.com/3/2945/15266379347_b9ee0d5908_b.jpg', 'https://reprap.org/forum/addon.php?262,module=embed_images,check_scaling=1,url=http%3A%2F%2Fc3.staticflickr.com%2F3%2F2945%2F15266379347_b9ee0d5908_b.jpg', '', 415929, 800, 400, 'Loading image ...', false);
</script>
<br />
<div id="div_97d62ca43e07c779df9a918a95cd94cb"
     class="mod_embed_images_extended"
     style="width:533px">

  

    
      
    

    <div id="imagediv_97d62ca43e07c779df9a918a95cd94cb" class="mod_embed_images_image"
         style="width:533px; height:400px">

    

    <a href="http://c4.staticflickr.com/4/3935/15266336658_c419053daa_b.jpg">
        <img src="/forum/thumbcache/880/7f0/d6f/035/70d/ecf/aa5/ba5/22b/7c1/f4_800x400.png"
             width="533"
             height="400"
             id="image_97d62ca43e07c779df9a918a95cd94cb"
             alt="15266336658_c419053daa_b.jpg"
             title="15266336658_c419053daa_b.jpg"/>
    </a>

    

    </div>

    <div class="mod_embed_images_info " id="info_97d62ca43e07c779df9a918a95cd94cb"
      style="display:block">
      <a id="link_97d62ca43e07c779df9a918a95cd94cb" href="http://c4.staticflickr.com/4/3935/15266336658_c419053daa_b.jpg">15266336658_c419053daa_b.jpg</a>
    </div>

  

 </div>


<script type="text/javascript">
mod_embed_images_loadimage('97d62ca43e07c779df9a918a95cd94cb', '/forum/thumbcache/880/7f0/d6f/035/70d/ecf/aa5/ba5/22b/7c1/f4_800x400.png', 'http://c4.staticflickr.com/4/3935/15266336658_c419053daa_b.jpg', 'https://reprap.org/forum/addon.php?262,module=embed_images,check_scaling=1,url=http%3A%2F%2Fc4.staticflickr.com%2F4%2F3935%2F15266336658_c419053daa_b.jpg', '', 415929, 800, 400, 'Loading image ...', false);
</script>
<br />
<div id="div_c8d51eee2dac20bd9cefa7998e03562c"
     class="mod_embed_images_extended"
     style="width:533px">

  

    
      
    

    <div id="imagediv_c8d51eee2dac20bd9cefa7998e03562c" class="mod_embed_images_image"
         style="width:533px; height:400px">

    

    <a href="http://c2.staticflickr.com/6/5601/15266335788_da10242649_b.jpg">
        <img src="/forum/thumbcache/1b1/96b/2e9/a89/c1d/82e/e9b/9eb/6c0/354/4d_800x400.png"
             width="533"
             height="400"
             id="image_c8d51eee2dac20bd9cefa7998e03562c"
             alt="15266335788_da10242649_b.jpg"
             title="15266335788_da10242649_b.jpg"/>
    </a>

    

    </div>

    <div class="mod_embed_images_info " id="info_c8d51eee2dac20bd9cefa7998e03562c"
      style="display:block">
      <a id="link_c8d51eee2dac20bd9cefa7998e03562c" href="http://c2.staticflickr.com/6/5601/15266335788_da10242649_b.jpg">15266335788_da10242649_b.jpg</a>
    </div>

  

 </div>


<script type="text/javascript">
mod_embed_images_loadimage('c8d51eee2dac20bd9cefa7998e03562c', '/forum/thumbcache/1b1/96b/2e9/a89/c1d/82e/e9b/9eb/6c0/354/4d_800x400.png', 'http://c2.staticflickr.com/6/5601/15266335788_da10242649_b.jpg', 'https://reprap.org/forum/addon.php?262,module=embed_images,check_scaling=1,url=http%3A%2F%2Fc2.staticflickr.com%2F6%2F5601%2F15266335788_da10242649_b.jpg', '', 415929, 800, 400, 'Loading image ...', false);
</script>
<br/>]]></description>
            <dc:creator>DinoK</dc:creator>
            <category>Printing</category>
            <pubDate>Sun, 05 Oct 2014 21:06:02 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,410642#msg-410642</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,410642#msg-410642</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>DinoK</strong><br />
@redhatman Can you please give some STL or(and) GCode examples of your failed prints ?<br />
I would like to try and print them myself as I have been researching this issue myself.</div></blockquote>
<br />
Essentially, if a part involves a circle hole, it will come out undersized. I made a circle test plate to use as a calibration/practice part which is used solely for messing around with this stuff.<br />
<br />
I have attached the .STL file, the holes should be 12mm down to 2mm, in step sizes of 1mm. Please let me know if you're able to get anywhere with it, the closest I have come to getting the accurate dimensions are 0.4mm undersized.<br />
<br />
[attachment 40814 circlestestplate.stl]<br />
<br />
<br />
[attachment 40815 Circleplate.PNG]]]></description>
            <dc:creator>redhatman</dc:creator>
            <category>Printing</category>
            <pubDate>Mon, 22 Sep 2014 18:21:48 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,410565#msg-410565</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,410565#msg-410565</link>
            <description><![CDATA[ @redhatman Can you please give some STL or(and) GCode examples of your failed prints ?<br />
I would like to try and print them myself as I have been researching this issue myself.]]></description>
            <dc:creator>DinoK</dc:creator>
            <category>Printing</category>
            <pubDate>Mon, 22 Sep 2014 15:34:46 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,410141#msg-410141</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,410141#msg-410141</link>
            <description><![CDATA[ Assuming that shrinkage is negligible, and all print temp/flow settings are perfect for straight edge parts, wouldn't the only issue left be the one Wissing mentioned? <br />
<br />
I have now tried Slic3r, Kisslicer, and Cura all with the same results. I have managed to get better looking parts with all of this messing around, however I still do not have accurate inner dimensions for circles.<br />
<br />
I would be interested in helping solve this issue if I knew a little bit more about the way slicing software works. I understand the basics of how flow width, height, etc is calculated, however, I'm referring to how the software actually interprets the .stl file and outputs the g-code.<br />
<br />
Again, thank you to everyone chiming in here. This forum has been great and continues to be a great benefit.  I appreciate it,<br />
<br />
-Pat]]></description>
            <dc:creator>redhatman</dc:creator>
            <category>Printing</category>
            <pubDate>Sun, 21 Sep 2014 17:21:19 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?262,407139,409002#msg-409002</guid>
            <title>Re: Undersized circles - Has this been solved yet?</title>
            <link>https://reprap.org/forum/read.php?262,407139,409002#msg-409002</link>
            <description><![CDATA[ I think this is inherent in the way the plastic is deposited. I had it explained to me like this: think about runners on a race track. The runners on the inside of the circle have less distance to travel, the runners on the outside have more distance to travel, to arrive at the same point in the circle. For plastic coming out of a nozzle, moving in an arc, it's similar. The plastic on the inside of the arc has less distance to travel, but the same surface area of plastic is dumped on the inside as the outside. Same amount of plastic, less total length, more total width.<br />
<br />
I would imagine this could be taken care of with slicing software - if they haven't already done it, they may soon. Anyone know if Slic3r has done this yet?]]></description>
            <dc:creator>Wissing</dc:creator>
            <category>Printing</category>
            <pubDate>Thu, 18 Sep 2014 12:39:52 -0400</pubDate>
        </item>
    </channel>
</rss>
