diff options
author | Jan Huwald <jh@sotun.de> | 2014-02-04 11:32:19 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2014-02-04 11:32:19 (GMT) |
commit | c6c73e8c8c7dca865a1bc3937e62b5fa33dd36f7 (patch) | |
tree | 93751ccd22b63544bf099afff3fe7a84c941dd59 /parameters.scad | |
parent | 406a11c1adf8f54b2a41c4968253d2a5a29a0002 (diff) |
split into multiple files
Diffstat (limited to 'parameters.scad')
-rw-r--r-- | parameters.scad | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/parameters.scad b/parameters.scad new file mode 100644 index 0000000..f95d757 --- /dev/null +++ b/parameters.scad @@ -0,0 +1,24 @@ +// space above hdd available for air flow +cooling_height = 10; + +// thickness of the support bar +bar_thickness = 10; + +// diameter of thread rod used for support +rod_diameter = 4; + +// dimensions of HDDs; not model-specific; current values are fake +hdd_width = 80; +hdd_height = 30; +hdd_length = 100; + +// dimensions of the L-shaped rail between front and back +rail_width = 15; +rail_height = rail_width; +rail_thickness = 1; + +// dimension of a single hdd tray (hdd + space around) +tray_height = hdd_height + cooling_height + rail_thickness; +tray_width = hdd_width + bar_thickness; + +pla_epsilon = 0.1; |