FlangeCovers

From NebarnixWiki
Revision as of 16:09, 29 March 2013 by NebarnixWikiSysop (talk | contribs) (New Page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Problem Statement

I want to get away from crumpling aluminum foil over unmated KF flanges. It looks nasty and sometimes it falls off anyway. I want to 3D print dust caps but I only want to have to plug in a single caliper reading of the diamater of the flange.

OpenSCAD

I wrote an OpenSCAD script that prints exactly 5 layers and 2 perimeters on Heatsync's ultimaker 3D printer.

height = 5;
thickness = 0.6;
wallThick = 1.17;
flangeOD=29.81;
Fit = 0.25;
insideDiameter = flangeOD + Fit;

rotate(a=[0,180,0])
difference()
{
cylinder(h=height, r=((insideDiameter/2)+wallThick), $fn=100);
cylinder(h=(height-thickness), r=insideDiameter/2, $fn=100);
}


Ultimaker PLA Results

Works like a charm!