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