Updates
This commit is contained in:
BIN
server_rack/images/base_plate.png
Normal file
BIN
server_rack/images/base_plate.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
BIN
server_rack/images/triple_ssd_mount.png
Normal file
BIN
server_rack/images/triple_ssd_mount.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
59
server_rack/scad/base_plate.scad
Normal file
59
server_rack/scad/base_plate.scad
Normal file
@@ -0,0 +1,59 @@
|
||||
$fn=60;
|
||||
|
||||
include <BOSL2/std.scad>
|
||||
include <boltsos_0.4.1/BOLTS.scad>
|
||||
include <nutsnbolts/cyl_head_bolt.scad>;
|
||||
|
||||
base_l=190;
|
||||
base_e=3;
|
||||
b_height=5;
|
||||
|
||||
module pilar() {
|
||||
difference() {
|
||||
zcyl(l=p_height, d=8, rounding1=-2);
|
||||
zcyl(l=p_height, d=3, rounding=-1);
|
||||
}
|
||||
}
|
||||
// holes_positions
|
||||
* color("red") {
|
||||
translate([-60,0,b_height-.5]) ycyl(l=200, d=1);
|
||||
translate([60,0,b_height-.5]) ycyl(l=200, d=1);
|
||||
}
|
||||
|
||||
// sample side attach
|
||||
* difference() {
|
||||
translate([0, 0, 0]) zcyl(l=5, d=18, rounding2=1);
|
||||
nutcatch_parallel("M4", clh=0.1);
|
||||
translate([0,0,10]) hole_through(name="M4", l=10+5, cld=0.1, h=0, hcld=0.4);
|
||||
}
|
||||
|
||||
// base plate
|
||||
difference() {
|
||||
union() {
|
||||
rect_tube(b_height+1, base_l, wall=base_e, rounding=base_e, irounding=base_e/2, center=true) {
|
||||
attach(BOT) rect_tube(base_e, base_l, wall=base_e*4, rounding=base_e, irounding=base_e/2, center=true);
|
||||
}
|
||||
translate([60,-base_l/2,b_height-.5]) ycyl(l=5.5, d=18, rounding1=1);
|
||||
translate([-60,-base_l/2,b_height-.5]) ycyl(l=5.5, d=18, rounding1=1);
|
||||
translate([60,base_l/2,b_height-.5]) ycyl(l=5.5, d=18, rounding2=1);
|
||||
translate([-60,base_l/2,b_height-.5]) ycyl(l=5.5, d=18, rounding2=1);
|
||||
}
|
||||
union() {
|
||||
translate([60,-base_l/2,b_height-.5]) rotate([90,90,0]) {
|
||||
nutcatch_parallel("M4", clh=0.1);
|
||||
translate([0,0,10]) hole_through(name="M4", l=10+5, cld=0.1, h=0, hcld=0.4);
|
||||
}
|
||||
translate([-60,-base_l/2,b_height-.5]) rotate([90,90,0]) {
|
||||
nutcatch_parallel("M4", clh=0.1);
|
||||
translate([0,0,10]) hole_through(name="M4", l=10+5, cld=0.1, h=0, hcld=0.4);
|
||||
}
|
||||
translate([60,base_l/2,b_height-.5]) rotate([-90,90,0]) {
|
||||
nutcatch_parallel("M4", clh=0.1);
|
||||
translate([0,0,10]) hole_through(name="M4", l=10+5, cld=0.1, h=0, hcld=0.4);
|
||||
}
|
||||
translate([-60,base_l/2,b_height-.5]) rotate([-90,90,0]) {
|
||||
nutcatch_parallel("M5", clh=0.1);
|
||||
translate([0,0,10]) hole_through(name="M5", l=10+5, cld=0.1, h=0, hcld=0.4);
|
||||
}
|
||||
}
|
||||
}
|
||||
30
server_rack/scad/temp.scad
Normal file
30
server_rack/scad/temp.scad
Normal file
@@ -0,0 +1,30 @@
|
||||
$fn=60;
|
||||
|
||||
include <BOSL2/std.scad>
|
||||
include <nutsnbolts/cyl_head_bolt.scad>
|
||||
|
||||
* import("../stl/dual_2.5_ssd_shelf.stl");
|
||||
|
||||
module wall() {
|
||||
difference() {
|
||||
union() {
|
||||
translate([0,0,19]) cuboid([3,85,38], rounding=3, edges=[TOP+FRONT,TOP+BACK]);
|
||||
translate([-1.5,0,2.5]) ycyl(l=85, d=3);
|
||||
translate([-1.5,0,15.5]) ycyl(l=85, d=3);
|
||||
translate([-1.5,0,28.5]) ycyl(l=85, d=3);
|
||||
}
|
||||
translate([0,-38.5,7]) xcyl(l=3, d=3.5);
|
||||
translate([0,-38.5,20]) xcyl(l=3, d=3.5);
|
||||
translate([0,-38.5,33]) xcyl(l=3, d=3.5);
|
||||
translate([0,38.5,7]) xcyl(l=3, d=3.5);
|
||||
translate([0,38.5,20]) xcyl(l=3, d=3.5);
|
||||
translate([0,38.5,33]) xcyl(l=3, d=3.5);
|
||||
}
|
||||
}
|
||||
|
||||
color("red") {
|
||||
rect_tube(h=3, size=[76,85], wall=7);
|
||||
* cuboid([76,85,3]);
|
||||
translate([36.5,0,0]) wall();
|
||||
translate([-36.5,0,0]) mirror([1,0,0]) wall();
|
||||
}
|
||||
37
server_rack/scad/triple_ssd_mount.scad
Normal file
37
server_rack/scad/triple_ssd_mount.scad
Normal file
@@ -0,0 +1,37 @@
|
||||
$fn=60;
|
||||
|
||||
include <BOSL2/std.scad>
|
||||
|
||||
module wall() {
|
||||
difference() {
|
||||
union() {
|
||||
translate([0,0,19]) cuboid([3,85,38], rounding=3, edges=[TOP+FRONT,TOP+BACK]);
|
||||
translate([-1.5,0,2]) ycyl(l=85, d=3);
|
||||
translate([-1.5,0,15]) ycyl(l=85, d=3);
|
||||
translate([-1.5,0,28]) ycyl(l=85, d=3);
|
||||
}
|
||||
translate([0,-38.5,7]) xcyl(l=3, d=3.5);
|
||||
translate([0,-38.5,20]) xcyl(l=3, d=3.5);
|
||||
translate([0,-38.5,33]) xcyl(l=3, d=3.5);
|
||||
translate([0,38.5,7]) xcyl(l=3, d=3.5);
|
||||
translate([0,38.5,20]) xcyl(l=3, d=3.5);
|
||||
translate([0,38.5,33]) xcyl(l=3, d=3.5);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
difference() {
|
||||
union() {
|
||||
rect_tube(h=3, size=[85,85], wall=10, center=true, anchor=TOP)
|
||||
translate([36.5,0,0]) wall();
|
||||
translate([-36.5,0,0]) mirror([1,0,0]) wall();
|
||||
rotate([0,0,41]) cuboid([170,10,3], rounding=5, edges=[FWD+RIGHT,FWD+LEFT,BACK+RIGHT,BACK+LEFT]);
|
||||
rotate([0,0,-41]) cuboid([170,10,3], rounding=5, edges=[FWD+RIGHT,FWD+LEFT,BACK+RIGHT,BACK+LEFT]);
|
||||
tube(od=135, id=125, l=3);
|
||||
}
|
||||
* cuboid([66,75,8]);
|
||||
translate([60,52.5,0]) zcyl(l=10, d=4.5);
|
||||
translate([60,-52.5,0]) zcyl(l=10, d=4.5);
|
||||
translate([-60,52.5,0]) zcyl(l=10, d=4.5);
|
||||
translate([-60,-52.5,0]) zcyl(l=10, d=4.5);
|
||||
}
|
||||
BIN
server_rack/stl/base_plate.stl
Normal file
BIN
server_rack/stl/base_plate.stl
Normal file
Binary file not shown.
BIN
server_rack/stl/mini_itx_mount.stl
Normal file
BIN
server_rack/stl/mini_itx_mount.stl
Normal file
Binary file not shown.
BIN
server_rack/stl/triple_ssd_mount.stl
Normal file
BIN
server_rack/stl/triple_ssd_mount.stl
Normal file
Binary file not shown.
Reference in New Issue
Block a user