/Modules/PowerSupply/LION2CELL01D/CAD/src/6x8MLAB_frame.scad
16,6 → 16,7
 
 
 
 
MLAB_grid_xoffset = MLAB_grid/2;
MLAB_grid_yoffset = MLAB_grid/2;
 
23,6 → 24,31
if ((j>(x_size-10) && i>(y_size-10)) || (j<10 && i<10) || (j<10 && i>(y_size-10)) || (j>(x_size-10) && i<10) ) [j, i] ];
 
 
//------------parameters---------------------------
 
nY = 8;
nX = 6;
 
 
meshX=x_size-4*pile_radius;
meshY=y_size-4*pile_radius;
 
// width of solid part of grid
meshSolid=1.2;
// width of blank part of grid
//meshSpaceX=(y_size-4*pile_radius)/8;
//meshSpaceY=(y_size-4*pile_radius)/8;
// thickness in Z direction
 
 
//-------------------------------------------------
//nX=meshX/(meshSolid+meshSpaceX);
//nY=meshY/(meshSolid+meshSpaceY);
 
meshSpaceX = (meshX - meshSolid*nX)/nX;
meshSpaceY = (meshY - meshSolid*nY)/nY;
 
 
difference () {
union () {
for (j = grid_list) {
47,5 → 73,20
translate (concat(j, [3.2])) // one solid layer for slicer (the holes will be pierced on demand )
cylinder (h = pedestal_height, r= mount_hole/2, $fn=10);
}
 
 
}
 
translate ([2*pile_radius, 2*pile_radius, 0]) // central hole in module support
union()
{
for (i=[1:nX-1]) {
translate([i*(meshSolid+meshSpaceX) - meshSolid/2,0,0]) cube(size=[meshSolid, meshY, thickness],center=false);
}
 
for (i=[1:nY-1]) {
translate([0,i*(meshSolid+meshSpaceY) - meshSolid/2,0]) cube(size=[meshX, meshSolid, thickness],center=false);
 
}
}