summaryrefslogtreecommitdiff
authorMichael Krelin <hacker@klever.net>2016-07-15 19:31:16 (UTC)
committer Michael Krelin <hacker@klever.net>2016-07-15 19:31:16 (UTC)
commit4fbbce6f2e884d2d10790c315539b4cc84c20bd5 (patch) (side-by-side diff)
treecc6355524f382370c1421be704ff5b34e47fc373
parent1e0d2c9ece5e3a67917e53f6324c1b9c59f947e4 (diff)
downloadcarriagery-4fbbce6f2e884d2d10790c315539b4cc84c20bd5.zip
carriagery-4fbbce6f2e884d2d10790c315539b4cc84c20bd5.tar.gz
carriagery-4fbbce6f2e884d2d10790c315539b4cc84c20bd5.tar.bz2
widened belt opening
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--x-carriage.scad5
1 files changed, 5 insertions, 0 deletions
diff --git a/x-carriage.scad b/x-carriage.scad
index 8a9f0d9..c2552d2 100644
--- a/x-carriage.scad
+++ b/x-carriage.scad
@@ -1,47 +1,48 @@
slide_tolerance = .3;
play_tolerance=.4;
fit_tolerance = .25;
bearings_l = 30; // LM8UU: 25
bearings_d = 12; // LM8UU: 15
bearings_m = 2.5; // thickness of the bearing end holder
bearings_s = 2.5; // the minimum shell between bearings and carriage front
rods_apart = 45;
rod_d = 8;
mounting_holes_from_top = [ // the offsets of mounting holes on the back
[0, 20], [-4.5,10], [4.5,10]
];
mounting_holes_apart = mounting_holes_from_top[2][0]-mounting_holes_from_top[1][0];
belt_tooth=0.70;
belt_thickness=0.75;
belts_thickness = belt_thickness*2+belt_tooth+0.5;
belt_width = 6 + slide_tolerance;
belts_apart = 12;
belt_pitch = 2;
+beltholder_chamfer = 1;
tiehole_id = bearings_d+3;
tiehole_od = bearings_d+10;
tiehole_w = 4;
screw_d = 3;
screwhead_d = 5.5;
screwhead_h = 3;
module belt(pitch=belt_pitch,width=belt_width,thickness=belt_thickness,tooth=belt_tooth,l=100,tolerance=0) {
translate([-l/2,-width/2,-thickness])
intersection() {
union() {
cube(size=[l,width,thickness+tolerance]);
for(x=[0:pitch:l/2]) for(s=[-1,1])
translate([l/2+s*x,0,thickness])
rotate([-90,0,0])
cylinder(r=tooth+tolerance,h=width,$fn=6);
}
translate([0,-1,0])
cube(size=[l,width+2,thickness+tooth+1]);
}
}
@@ -72,31 +73,35 @@ module xcarriage() {
ofc = mounting_holes_apart/2+screwhead_d/2+belt_thickness+belt_tooth+play_tolerance; // offset from center
r=1;
x0 = ofc+r; x1=cw/2-r;
z0 = r; z1 = belts_apart/2-belt_thickness;
difference() {
hull() for(x=[x0,x1]) for(z=[z0,z1])
translate([x,0,z])
rotate([90,0,0]) cylinder(r=r,h=belt_width+2,center=true,$fn=30);
translate([cw/2,0,belts_apart/2]) mirror([0,0,1]) belt(width=belt_width+2,l=cw/2+2,tolerance=fit_tolerance);
}
bgap = belt_thickness+belt_tooth+fit_tolerance;
r1 = (belts_apart/3-bgap)/2;
hull() for(x=[mounting_holes_apart/2,x1])
translate([x,0,-r1-bgap])
rotate([90,0,0]) cylinder(r=r1,h=belt_width+2,center=true,$fn=30);
}
} // difference
translate([0,0,30/*heatsink height*//2])
for(mhft = mounting_holes_from_top) translate([mhft[0],0,-mhft[1]]) {
rotate([90,0,0]) cylinder(d=screw_d+2*play_tolerance,h=bearings_d+2*bearings_s+2,center=true,$fn=30);
translate([0,belt_width/2+screwhead_h+play_tolerance,0])
rotate([90,0,0]) cylinder(d=screwhead_d+2*play_tolerance,h=screwhead_h+play_tolerance+1,$fn=30);
}
+ ccs = (belt_thickness+2*beltholder_chamfer)/sqrt(2);
+ translate([0,-belt_width/2,belts_apart/2+belt_thickness/2-fit_tolerance/2])
+ rotate([45,0,0]) cube(size=[cw+2,ccs,ccs],center=true);
+
} // difference
}
print=false;
if(print) rotate([-90,0,0]) xcarriage();
else xcarriage();