chiark / gitweb /
belt-*: allow top to be different size
[reprap-play.git] / belt-slot-cut-jig.scad
1 // -*- C -*-
2
3 // todo
4 //  various registration marks
5 //   protrustions at ends at strap width and middle
6 //   grooves on top face at 1/4,1/2,3/4 length and 1/2 width
7
8 strap_thick = 3;
9 strap_width = 26.75 + 0.7;
10
11 jig_interval = 25;
12
13 edgewall_width = 3;
14 crewpunch_slop = 0.3;
15 main_slop = 0.25;
16
17 holder_min_wall = 2;
18 holder_attach_near_wall = 5;
19
20 holder_attach_xsz = 5;
21 holder_ctie_width = 4.0 + 0.5;
22 holder_ctie_thick = 3.0 + 0.5;
23 holder_attach_walls = 3;
24 holder_attach_roof = 2.5;
25
26 holder_corner_round = 2.0;
27
28 punch_travel = 8;
29
30 // from careful measurement
31
32 crewpunch_shape =
33   [[  6, [0.6, 6.0], [1.6, 12.3] ],
34    [  8, [1.1, 6.2], [1.9, 12.5] ],
35    [ 10, [1.6, 6.5], [2.1, 12.8] ],
36    [ 12, [1.8, 6.6], [2.3, 12.7] ],
37    [ 14, [2.1, 6.8], [2.6, 13.0] ],
38    [ 16, [2.4, 6.9], [2.7, 13.2] ],
39    [ 18, [2.5, 7.0], [2.9, 13.3] ],
40    [ 22, [3.1, 7.1], [3.2, 13.4] ],
41    [ 26, [3.3, 7.2], [3.5, 13.6] ], 
42    ];
43
44 crewpunch_shaft_max_y = 7.5;
45
46 crewpunch_systematic_size_error = +0.36;
47
48 crewpunch_smallest_shape = crewpunch_shape[0];
49 crewpunch_biggest_shape = crewpunch_shape[len(crewpunch_shape)-1];
50
51 crewpunch_skew_angle = 3.5; //degrees
52 crewpunch_skew_yoff = +1.1; //mm
53
54 // computed
55
56 punch_dx = 0.5 * (-crewpunch_biggest_shape[2][0]
57                   +crewpunch_biggest_shape[2][1]);
58 punch_dy = 0.5 * (+crewpunch_biggest_shape[1][1]
59                   -crewpunch_biggest_shape[1][0]) + crewpunch_skew_yoff;
60
61 attach_ysz = holder_attach_walls*2 + holder_ctie_width;
62
63 holder_block_zsz = crewpunch_biggest_shape[0] - crewpunch_smallest_shape[0];
64 holder_xsz = crewpunch_biggest_shape[2][0] + crewpunch_biggest_shape[2][1] +
65   holder_min_wall*2;
66
67 holder_skewangle_yextra = holder_xsz/2 * sin(abs(crewpunch_skew_angle));
68
69 holder_max_y = punch_dy + crewpunch_biggest_shape[1][0] + holder_min_wall
70   + crewpunch_systematic_size_error + holder_skewangle_yextra;
71
72 holder_attach_max_y = punch_dy
73   - max(crewpunch_biggest_shape[1][1], crewpunch_shaft_max_y)
74   - crewpunch_systematic_size_error - holder_skewangle_yextra;
75
76 holder_block_min_y = punch_dy
77   - crewpunch_biggest_shape[1][1] - holder_attach_near_wall +
78   - crewpunch_systematic_size_error - holder_skewangle_yextra;
79
80 holder_all_min_y = holder_attach_max_y - attach_ysz;
81
82 jig_max_y = max(holder_max_y + main_slop, strap_width/2) + edgewall_width;
83 jig_min_y = min(holder_all_min_y - main_slop, -strap_width/2) - edgewall_width;
84
85 jig_top_max_y = jig_max_y;
86 jig_top_min_y = jig_min_y;
87
88 jig_main_zsz = holder_block_zsz + punch_travel;
89
90 // common stuff
91
92 include <belt-cut-jig-common.scad>
93
94 // objects
95
96 module CrewPunch(){
97   ourslop = crewpunch_slop - crewpunch_systematic_size_error;
98   hull(){
99     for(layer=crewpunch_shape){
100       translate([0,0, layer[0]]){
101         for(xind=[0,1]) //translate([xind?0:1,0,0])
102           for(yind=[0,1]) //translate([0,yind?0.5:0,0])
103             mirror([xind?1:0,0,0]) mirror([0,yind?0:1,0]){
104               translate([-0.1,-0.1,-0.1])
105                 cube([0.1 + layer[2][xind] + ourslop,
106                       0.1 + layer[1][1-yind] + ourslop,
107                       0.2]);
108             }
109       }
110     }
111   }
112 }
113
114 module MaybeRoundedCube(sizes, roundedness){
115   if (roundedness > 0) {
116     translate([roundedness, roundedness, 0]){
117       minkowski(){
118         cube([sizes[0] - roundedness*2,
119               sizes[1] - roundedness*2,
120               sizes[2]]);
121         cylinder(h=0.05, r=roundedness, $fn=20);
122       }
123     }
124   } else {
125     cube(sizes);
126   }
127 }
128
129 module PunchHolder(cutouts=true){
130   roundedness = cutouts ? holder_corner_round : 0;
131     difference(){
132       translate([-holder_xsz/2, holder_block_min_y, 0])
133         MaybeRoundedCube([holder_xsz,
134                           holder_max_y - holder_block_min_y,
135                           holder_block_zsz],
136                          roundedness);
137       if (cutouts)
138         rotate([0,0,-crewpunch_skew_angle])
139         translate([punch_dx,
140                    punch_dy,
141                    -crewpunch_smallest_shape[0]])
142           CrewPunch();
143     }
144     difference(){
145       translate([-holder_attach_xsz/2, holder_all_min_y, 0])
146         MaybeRoundedCube([holder_attach_xsz,
147                           attach_ysz,
148                           holder_block_zsz + punch_travel
149                           + holder_ctie_thick + holder_attach_roof + 1],
150                          roundedness);
151       if (cutouts)
152         translate([-30,
153                    holder_all_min_y + holder_attach_walls,
154                    holder_block_zsz + punch_travel])
155           cube([60, holder_ctie_width, holder_ctie_thick]);
156     }
157 }
158
159 module OneJigCutout(){
160   minkowski(){
161     cube([main_slop*2, main_slop*2, 50], center=true);
162     PunchHolder(false);
163   }
164 }
165
166 module JigT(){ ////toplevel
167   JigPrint();
168 }
169
170 module PunchHolderT(){ ////toplevel
171   PunchHolder(true);
172 }
173
174 module Demo(){ ////toplevel
175   %PunchHolder();
176   Jig();
177 }
178
179 module Kit(){ ////toplevel
180   JigT();
181   rotate([0,0,-45]){
182     translate([(jig_iters-1)*jig_interval/2,
183                jig_min_y - holder_max_y - 5,
184                0])
185       PunchHolder();
186   }
187 }
188
189 //CrewPunch();
190 //PunchHolder();
191 //PunchHolder(false);
192 //OneJig();
193 //Jig();
194 Demo();
195 //JigT();
196 //RegistrationProtrusion();
197 //PunchHolderT();
198 //Kit();