1
0
mirror of https://github.com/pgrondek/SixInchRack.git synced 2024-11-22 20:13:42 +00:00
SixInchRack/README.md

118 lines
3.9 KiB
Markdown
Raw Normal View History

2017-03-05 08:20:08 +00:00
# SixInchRack
2017-03-05 08:41:51 +00:00
This is a project for 6" cabinets and rack enclusures.
For pictures have a look here:
2017-03-05 08:42:43 +00:00
- http://www.thingiverse.com/thing:1957436
- http://www.thingiverse.com/thing:1936196
- http://www.thingiverse.com/thing:2084736
2017-03-05 08:41:51 +00:00
The project is a scaled down version of the familiar 19" rack standard, with the following size:
- 1U is 14mm
2017-03-05 08:53:01 +00:00
- The front plate is 155mm wide
- The inside distance between the two vertical profiles is 115mm
- The ears protrude 20mm
2017-03-05 08:41:51 +00:00
It is designed for the 20x20 extruded aluminium profile, but a profile can also be printed.
2017-03-05 08:20:08 +00:00
##I want to print a simple blank six inch cabinet
2017-03-05 08:23:33 +00:00
Go Thingiverse and locate this build: http://www.thingiverse.com/thing:1957436
In the customizer you specify how many units you need in height, and depth in mm you need.
Alternatively, fetch these files from the repository:...
2017-03-05 08:41:51 +00:00
2017-03-05 08:23:33 +00:00
##I want to print a simple six inch rack enclosure for cabinets
Go Thingiverse and locate this build: http://www.thingiverse.com/thing:1957436
In the customizer you specify which parts you need.
Alternatively, fetch these files from the repository:...
2017-03-05 08:59:26 +00:00
##I want to print a 6" cabinet for a specific component
Either go to thingiverse where you can find the stl's and pictures, or download the stl's form this repository. Currently the following components are supported by the community:
- http://www.thingiverse.com/thing:2084736 Raspberry Pi 3 Model B
- http://www.thingiverse.com/thing:1905998 Raspberry Pi B
2017-03-05 09:06:02 +00:00
- http://www.thingiverse.com/thing:2151578 Beaglebone Black
- http://www.thingiverse.com/thing:2123108 DPS5005 power supply
- http://www.thingiverse.com/thing:2105698 Beaglebone Black
2017-03-05 11:59:31 +00:00
##I want to make a new cabinet for my favourite module
2017-03-05 12:32:21 +00:00
Start by inspecting this file for inspiration _RackCabinets/RaspberryPiModelB/usb_back.scad_, and take a look at the how to section below.
2017-03-05 12:07:48 +00:00
2017-03-05 12:09:12 +00:00
1. Create a new file that includes _sixinch_library.scad_
2017-03-05 12:07:48 +00:00
2. Customize all the parts needed for your cabinet
3. Create a new folder with you project, and anything else needed like print descriptions
4. If you like, create a Thingiverse build with pictures and your stl, and add a link in this file
2017-03-05 11:59:31 +00:00
2017-03-05 12:49:43 +00:00
##Quick How To##
2017-03-05 12:32:21 +00:00
A cabinet consist of five parts:
2017-03-05 12:39:20 +00:00
- Front plate
2017-03-05 12:49:43 +00:00
- Back plate
2017-03-05 12:39:20 +00:00
- Cabinet
- Lid
- Handles
In a new file, include _sixinch_library.scad_. For each of the parts, there is module in the library where you can specify the most commonly used features like round and square holes, and pegs for supporting PCB's etc. The following examples are for Raspberry Pi 3 cabinet. <br>
The deafult modules obviously does not support everything you need, but should give you a good start for further customization. Feel free to add functionality to the library.
###Front Plate###
2017-03-05 12:50:27 +00:00
```java
2017-03-05 12:39:20 +00:00
square_hole = [];
round_hole = [[65 ,7.5, 3.1],[69.5 ,7.5, 3.1]];
round_peg = [];
screw_side_front = [];
screw_top = [36];
screw_bottom_front = [36];
units = 2;
frontplate(units,square_hole,round_hole,round_peg,screw_side_front,screw_top,screw_bottom_front);
2017-03-05 12:41:44 +00:00
```
2017-03-05 12:32:21 +00:00
2017-03-05 12:47:05 +00:00
###Handle###
2017-03-05 12:50:27 +00:00
```java
2017-03-05 12:47:05 +00:00
units = 2;
lay_flat_for_print = true;
handle(units,lay_flat_for_print);
```
###Cabinet###
2017-03-05 12:50:27 +00:00
```java
2017-03-05 12:47:05 +00:00
w=88;
h=70;
screw_bottom_front = [36];
screw_side_front = [];
round_peg = [[w,h,6,2.8,4],
[w-49,h,6,2.8,4],
[w-49,h-58,6,2.8,4],
[w,h-58,6,2.8,4]];
depth = 98;
units = 2;
cabinet(depth,units,screw_bottom_front,round_peg,screw_side_front);
```
###Lid###
2017-03-05 12:50:27 +00:00
```java
2017-03-05 12:47:05 +00:00
depth = 98;
units = 2;
screw_front = [36];//mm
screw_back = [36];//mm
lid(98,2,screw_front,screw_back);
```
2017-03-05 12:50:27 +00:00
###Back plate
```java
2017-03-05 12:47:05 +00:00
square_hole = [[37 ,3, 17, 15] , [57 ,4, 15, 16] , [75,4,15,16] ];
round_hole = [[6,5,6],[6,1,6], [24,3.5,3.5],[24,1.2,3.5] ,[30,3.5,3.5],[30,1.2,3.5]];
screw_top = [36];//mm
screw_bottom = [36];//mm
screw_side = [];
depth = 98;
units = 2;
back_plate(units,depth,screw_top,screw_bottom,screw_side,square_hole,round_hole);
```
2017-03-05 12:32:21 +00:00
2017-03-05 11:59:31 +00:00