GithubHelp home page GithubHelp logo

sixinchrack's Introduction

SixInchRack

This is a project for 6" cabinets and rack enclusures.

For pictures have a look here:

The project is a scaled down version of the familiar 19" rack standard, with the following size:

  • 1U is 14mm
  • The front plate is 155mm wide
  • The inside distance between the two vertical profiles is 115mm
  • The ears protrude 20mm

It is designed for the 20x20 extruded aluminium profile, but a profile can also be printed.

I want to print a simple blank six inch cabinet

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:...

I want to print a simple six inch rack enclosure for cabinets

Go Thingiverse and locate this build: https://www.thingiverse.com/thing:1936196 In the customizer you specify which parts you need. Alternatively, fetch these files from the repository:...

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:

I want to make a new cabinet for my favourite module

Start by inspecting this file for inspiration RackCabinets/RaspberryPiModelB/usb_back.scad, and take a look at the how to section below.

  1. Create a new file that includes sixinch_library.scad
  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

Quick How To

A cabinet consist of five parts:

  • Front plate
  • Back plate
  • 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.
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

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);

Handle

units              = 2;
lay_flat_for_print = true;   
handle(units,lay_flat_for_print);

Cabinet

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

depth = 98;
units = 2;
screw_front = [36];//mm
screw_back  = [36];//mm
lid(98,2,screw_front,screw_back);        

Back plate

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);

sixinchrack's People

Contributors

kronbjorn avatar mchus avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.