Rev 3862 Rev 3871
Line 1... Line 1...
1   1  
2 pedestal_height = 5; // designed for use the MLAB standard 12mm screws. 2 pedestal_height = 5; // designed for use the MLAB standard 12mm screws.
3 mount_hole = 3.5; 3 mount_hole = 3.5;
4 clear = 0.175; 4 clear = 0.175;
5 nut_size = 6.6; 5 nut_size = 6.6;
6   -  
-   6 mil = 25.4/1000;
-   7 MLAB_grid = 400*mil;
7   8  
8 difference () { 9 difference () {
-   10 translate ([-190*mil, -190*mil, 0])
9 cube([50.292,70.612,pedestal_height]); 11 cube([50.292,70.612,pedestal_height]);
10   12  
11 translate ([1, 2, 2.5]) -  
12 difference(){ 13 difference(){
-   14 translate ([-190*mil + 1.5, -190*mil + 2, 2.5])
13 cube([47.292,66.612,pedestal_height]); 15 cube([46.792,66.612,pedestal_height]);
14   16  
-   17 translate ([-190*mil, -190*mil, 0])
15 cube([8,8,pedestal_height]); 18 cube([MLAB_grid -10*mil,MLAB_grid -10*mil,pedestal_height]);
16   19  
17 translate ([47.292 - 8, 0, 0]) 20 translate ([4*MLAB_grid - 190*mil, -190*mil, 0])
18 cube([8,8,pedestal_height]); 21 cube([MLAB_grid -10*mil ,MLAB_grid -10*mil,pedestal_height]);
19   22  
20 translate ([47.292 - 8, 66.612 - 8, 0]) 23 translate ([4*MLAB_grid - 190*mil, 6*MLAB_grid -190*mil, 0])
21 cube([8,8,pedestal_height]); 24 cube([MLAB_grid -10*mil ,MLAB_grid -10*mil,pedestal_height]);
22   25  
23 translate ([0, 66.612 - 8, 0]) 26 translate ([-190*mil, 6*MLAB_grid -190*mil, 0])
24 cube([8,8,pedestal_height]); 27 cube([MLAB_grid-10*mil,MLAB_grid-10*mil ,pedestal_height]);
25 28
26 //insulating wall 29 //insulating wall
27 translate ([20, 0, 0]) 30 translate ([20-190*mil, -190*mil, 0])
28 cube([1,70,pedestal_height]); 31 cube([1,70,pedestal_height]);
29 translate ([22, 0, 0]) 32 translate ([22-190*mil, -190*mil, 0])
30 cube([1,70,pedestal_height]); 33 cube([1,70,pedestal_height]);
31 34
32 } 35 }
33   36  
34 //////////////////////////////////////// 37 ////////////////////////////////////////
35   38  
36 // MLAB grid holes 39 // MLAB grid holes
37   40  
38 translate ([4.572, 4.572,0]) 41 translate ([0, 0, 0])
39 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6); 42 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
40 translate ([4.572, 4.572, 3.2]) // one solid layer for slicer (the holes will be pierced on demand ) 43 translate ([0, 0, 3.2]) // one solid layer for slicer (the holes will be pierced on demand )
41 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10); 44 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
42   45  
43 translate ([4.572 + 4*10.16, 4.572,0]) 46 translate ([4*MLAB_grid, 0, 0])
44 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6); 47 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
45 translate ([4.572 + 4*10.16, 4.572, 3.2]) // one solid layer for slicer (the holes will be pierced on demand ) 48 translate ([4*MLAB_grid, 0, 3.2]) // one solid layer for slicer (the holes will be pierced on demand )
46 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10); 49 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
47   50  
48   51  
49 translate ([4.572, 4.572 + 6*10.16, 0]) 52 translate ([0, 6*MLAB_grid, 0])
50 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6); 53 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
51 translate ([4.572, 4.572 + 6*10.16, 3.2]) // one solid layer for slicer (the holes will be pierced on demand ) 54 translate ([0, 6*MLAB_grid, 3.2]) // one solid layer for slicer (the holes will be pierced on demand )
52 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10); 55 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
53   56  
54 translate ([4.572 + 4*10.16, 4.572 + 6*10.16, 0]) 57 translate ([4*MLAB_grid, 6*10.16, 0])
55 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6); 58 cylinder (h = 3, r= (nut_size+clear)/2, $fn=6);
56 translate ([4.572 + 4*10.16, 4.572 + 6*10.16, 3.2]) // one solid layer for slicer (the holes will be pierced on demand ) 59 translate ([4*MLAB_grid, 6*10.16, 3.2]) // one solid layer for slicer (the holes will be pierced on demand )
57 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10); 60 cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
58   61  
59 } 62 }
60   63  
61   64