author | Michael Krelin <hacker@klever.net> | 2016-07-15 21:52:05 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2016-07-15 21:52:05 (UTC) |
commit | d67ab62d587d8108c93a7cbd1dcc9c0af1381076 (patch) (unidiff) | |
tree | 88f7d6bb1395d570b8f459945b5f4a137f1fe972 | |
parent | cd89e0556473d0dde27950f397326b2ed4a4d684 (diff) | |
download | carriagery-d67ab62d587d8108c93a7cbd1dcc9c0af1381076.zip carriagery-d67ab62d587d8108c93a7cbd1dcc9c0af1381076.tar.gz carriagery-d67ab62d587d8108c93a7cbd1dcc9c0af1381076.tar.bz2 |
widened opening for the bearings
-rw-r--r-- | x-carriage.scad | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/x-carriage.scad b/x-carriage.scad index 6dc5b67..47ba499 100644 --- a/x-carriage.scad +++ b/x-carriage.scad | |||
@@ -11,96 +11,98 @@ rods_apart = 45; | |||
11 | rod_d = 8; | 11 | rod_d = 8; |
12 | 12 | ||
13 | mounting_holes_from_top = [// the offsets of mounting holes on the back | 13 | mounting_holes_from_top = [// the offsets of mounting holes on the back |
14 | [0, 20], [-4.5,10], [4.5,10] | 14 | [0, 20], [-4.5,10], [4.5,10] |
15 | ]; | 15 | ]; |
16 | mounting_holes_apart = mounting_holes_from_top[2][0]-mounting_holes_from_top[1][0]; | 16 | mounting_holes_apart = mounting_holes_from_top[2][0]-mounting_holes_from_top[1][0]; |
17 | 17 | ||
18 | belt_tooth=0.70; | 18 | belt_tooth=0.70; |
19 | belt_thickness=0.75; | 19 | belt_thickness=0.75; |
20 | belts_thickness = belt_thickness*2+belt_tooth+0.5; | 20 | belts_thickness = belt_thickness*2+belt_tooth+0.5; |
21 | belt_width = 6 + slide_tolerance; | 21 | belt_width = 6 + slide_tolerance; |
22 | belts_apart = 12; | 22 | belts_apart = 12; |
23 | belt_pitch = 2; | 23 | belt_pitch = 2; |
24 | beltholder_chamfer = 1; | 24 | beltholder_chamfer = 1; |
25 | 25 | ||
26 | tiehole_id = bearings_d+3; | 26 | tiehole_id = bearings_d+3; |
27 | tiehole_od = bearings_d+10; | 27 | tiehole_od = bearings_d+10; |
28 | tiehole_w = 4; | 28 | tiehole_w = 4; |
29 | 29 | ||
30 | screw_d = 3; | 30 | screw_d = 3; |
31 | screwhead_d = 5.5; | 31 | screwhead_d = 5.5; |
32 | screwhead_h = 3; | 32 | screwhead_h = 3; |
33 | 33 | ||
34 | module belt(pitch=belt_pitch,width=belt_width,thickness=belt_thickness,tooth=belt_tooth,l=100,tolerance=0) { | 34 | module belt(pitch=belt_pitch,width=belt_width,thickness=belt_thickness,tooth=belt_tooth,l=100,tolerance=0) { |
35 | translate([-l/2,-width/2,-thickness]) | 35 | translate([-l/2,-width/2,-thickness]) |
36 | intersection() { | 36 | intersection() { |
37 | union() { | 37 | union() { |
38 | cube(size=[l,width,thickness+tolerance]); | 38 | cube(size=[l,width,thickness+tolerance]); |
39 | for(x=[0:pitch:l/2]) for(s=[-1,1]) | 39 | for(x=[0:pitch:l/2]) for(s=[-1,1]) |
40 | translate([l/2+s*x,0,thickness]) | 40 | translate([l/2+s*x,0,thickness]) |
41 | rotate([-90,0,0]) | 41 | rotate([-90,0,0]) |
42 | cylinder(r=tooth+tolerance,h=width,$fn=6); | 42 | cylinder(r=tooth+tolerance,h=width,$fn=6); |
43 | } | 43 | } |
44 | translate([0,-1,0]) | 44 | translate([0,-1,0]) |
45 | cube(size=[l,width+2,thickness+tooth+1]); | 45 | cube(size=[l,width+2,thickness+tooth+1]); |
46 | } | 46 | } |
47 | } | 47 | } |
48 | 48 | ||
49 | module xcarriage() { | 49 | module xcarriage() { |
50 | cw = bearings_l+2*bearings_m;// carriage width | 50 | cw = bearings_l+2*bearings_m;// carriage width |
51 | % for(mz=[0,1]) mirror([0,0,mz]) translate([0,0,-belts_apart/2]) belt(l=cw+2); | 51 | % for(mz=[0,1]) mirror([0,0,mz]) translate([0,0,-belts_apart/2]) belt(l=cw+2); |
52 | difference() { | 52 | difference() { |
53 | translate([-cw/2,-belt_width/2,-(rods_apart+bearings_d+bearings_m)/2]) | 53 | translate([-cw/2,-belt_width/2,-(rods_apart+bearings_d+bearings_m)/2]) |
54 | cube(size=[cw,bearings_d/2+bearings_s+belt_width/2,rods_apart+bearings_d+bearings_m]); | 54 | cube(size=[cw,bearings_d/2+bearings_s+belt_width/2,rods_apart+bearings_d+bearings_m]); |
55 | 55 | ||
56 | for(sz=[-1,1]) translate([0,0,sz*rods_apart/2]) { | 56 | for(sz=[-1,1]) translate([0,0,sz*rods_apart/2]) { |
57 | rotate([0,90,0]) | 57 | rotate([0,90,0]) |
58 | cylinder(d=bearings_d,h=bearings_l,center=true,$fn=60); | 58 | cylinder(d=bearings_d,h=bearings_l,center=true,$fn=60); |
59 | translate([0,-bearings_d/2,0]) | ||
60 | cube(size=[bearings_l,bearings_d,bearings_d],center=true); | ||
59 | for(sx=[-1,1]) translate([sx*bearings_l/4,0,0]) | 61 | for(sx=[-1,1]) translate([sx*bearings_l/4,0,0]) |
60 | rotate([0,90,0]) cylinder(d=bearings_d-bearings_m,h=cw+2,center=true,$fn=60); | 62 | rotate([0,90,0]) cylinder(d=bearings_d-bearings_m,h=cw+2,center=true,$fn=60); |
61 | translate([-cw/2-1,-belt_width,-(bearings_d-bearings_m)/2]) | 63 | translate([-cw/2-1,-belt_width,-(bearings_d-bearings_m)/2]) |
62 | cube(size=[cw+2,belt_width,bearings_d-bearings_m]); | 64 | cube(size=[cw+2,belt_width,bearings_d-bearings_m]); |
63 | rotate([0,90,0]) difference() { | 65 | rotate([0,90,0]) difference() { |
64 | cylinder(d=tiehole_od,h=tiehole_w,center=true,$fn=60); | 66 | cylinder(d=tiehole_od,h=tiehole_w,center=true,$fn=60); |
65 | cylinder(d=tiehole_id,h=tiehole_w+2,center=true,$fn=60); | 67 | cylinder(d=tiehole_id,h=tiehole_w+2,center=true,$fn=60); |
66 | } | 68 | } |
67 | } | 69 | } |
68 | 70 | ||
69 | difference() { | 71 | difference() { |
70 | gap=belts_apart/6; | 72 | gap=belts_apart/6; |
71 | translate([0,-.5,-gap/2]) | 73 | translate([0,-.5,-gap/2]) |
72 | cube(size=[cw+2,belt_width+2,belts_apart+2*belt_thickness+gap],center=true); | 74 | cube(size=[cw+2,belt_width+2,belts_apart+2*belt_thickness+gap],center=true); |
73 | for(mx=[0,1]) mirror([mx,0,0]) { | 75 | for(mx=[0,1]) mirror([mx,0,0]) { |
74 | ofc = mounting_holes_apart/2+screwhead_d/2+belt_thickness+belt_tooth+play_tolerance; // offset from center | 76 | ofc = mounting_holes_apart/2+screwhead_d/2+belt_thickness+belt_tooth+play_tolerance; // offset from center |
75 | r=1; | 77 | r=1; |
76 | x0 = ofc+r; x1=cw/2-r; | 78 | x0 = ofc+r; x1=cw/2-r; |
77 | z0 = r; z1 = belts_apart/2-belt_thickness; | 79 | z0 = r; z1 = belts_apart/2-belt_thickness; |
78 | difference() { | 80 | difference() { |
79 | hull() for(x=[x0,x1]) for(z=[z0,z1]) | 81 | hull() for(x=[x0,x1]) for(z=[z0,z1]) |
80 | translate([x,0,z]) | 82 | translate([x,0,z]) |
81 | rotate([90,0,0]) cylinder(r=r,h=belt_width+2,center=true,$fn=30); | 83 | rotate([90,0,0]) cylinder(r=r,h=belt_width+2,center=true,$fn=30); |
82 | translate([cw/2,0,belts_apart/2]) mirror([0,0,1]) belt(width=belt_width+2,l=cw/2+2,tolerance=fit_tolerance); | 84 | translate([cw/2,0,belts_apart/2]) mirror([0,0,1]) belt(width=belt_width+2,l=cw/2+2,tolerance=fit_tolerance); |
83 | } | 85 | } |
84 | bgap = belt_thickness+belt_tooth+fit_tolerance; | 86 | bgap = belt_thickness+belt_tooth+fit_tolerance; |
85 | r1 = (belts_apart/3-bgap)/2; | 87 | r1 = (belts_apart/3-bgap)/2; |
86 | hull() for(x=[mounting_holes_apart/2,x1]) | 88 | hull() for(x=[mounting_holes_apart/2,x1]) |
87 | translate([x,0,-r1-bgap]) | 89 | translate([x,0,-r1-bgap]) |
88 | rotate([90,0,0]) cylinder(r=r1,h=belt_width+2,center=true,$fn=30); | 90 | rotate([90,0,0]) cylinder(r=r1,h=belt_width+2,center=true,$fn=30); |
89 | } | 91 | } |
90 | } // difference | 92 | } // difference |
91 | 93 | ||
92 | translate([0,0,30/*heatsink height*//2]) | 94 | translate([0,0,30/*heatsink height*//2]) |
93 | for(mhft = mounting_holes_from_top) translate([mhft[0],0,-mhft[1]]) { | 95 | for(mhft = mounting_holes_from_top) translate([mhft[0],0,-mhft[1]]) { |
94 | rotate([90,0,0]) cylinder(d=screw_d+2*play_tolerance,h=bearings_d+2*bearings_s+2,center=true,$fn=30); | 96 | rotate([90,0,0]) cylinder(d=screw_d+2*play_tolerance,h=bearings_d+2*bearings_s+2,center=true,$fn=30); |
95 | translate([0,belt_width/2+screwhead_h+play_tolerance,0]) | 97 | translate([0,belt_width/2+screwhead_h+play_tolerance,0]) |
96 | rotate([90,0,0]) cylinder(d=screwhead_d+2*play_tolerance,h=screwhead_h+play_tolerance+1,$fn=30); | 98 | rotate([90,0,0]) cylinder(d=screwhead_d+2*play_tolerance,h=screwhead_h+play_tolerance+1,$fn=30); |
97 | } | 99 | } |
98 | ccs = (belt_thickness+2*beltholder_chamfer)/sqrt(2); | 100 | ccs = (belt_thickness+2*beltholder_chamfer)/sqrt(2); |
99 | translate([0,-belt_width/2,belts_apart/2+belt_thickness/2-fit_tolerance/2]) | 101 | translate([0,-belt_width/2,belts_apart/2+belt_thickness/2-fit_tolerance/2]) |
100 | rotate([45,0,0]) cube(size=[cw+2,ccs,ccs],center=true); | 102 | rotate([45,0,0]) cube(size=[cw+2,ccs,ccs],center=true); |
101 | 103 | ||
102 | } // difference | 104 | } // difference |
103 | } | 105 | } |
104 | 106 | ||
105 | print=false; | 107 | print=false; |
106 | if(print) rotate([-90,0,0]) xcarriage(); | 108 | if(print) rotate([-90,0,0]) xcarriage(); |