diff options
author | Jan Huwald <jh@sotun.de> | 2014-02-04 14:14:07 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2014-02-04 14:14:07 (GMT) |
commit | 7a57e259ab38d2bf92ac7b1a897637f0ccf82026 (patch) | |
tree | 7c9791a649db145fcdc4615a984661c7c92cc504 /parameters.scad | |
parent | 537dd8413ec6dd17c1753d520c067378c655c8e5 (diff) |
full model: add example hdd
Diffstat (limited to 'parameters.scad')
-rw-r--r-- | parameters.scad | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/parameters.scad b/parameters.scad index 7dc102a..daea23a 100644 --- a/parameters.scad +++ b/parameters.scad @@ -1,6 +1,6 @@ // size of the array num_hdd_x = 4; -num_hdd_y = 4; +num_hdd_y = 3; // space above hdd available for air flow cooling_height = 10; @@ -23,8 +23,12 @@ rail_width = 15; rail_height = rail_width; rail_thickness = 1; +// assumed space deviation of the resulting form; used to leave space +// in holes so that screws and rods do not stuck +pla_epsilon = 0.1; + // dimension of a single hdd tray (hdd + space around) -tray_height = hdd_height + cooling_height + rail_thickness; +tray_height = hdd_height + max(cooling_height, 2 * bar_thickness + 10 * pla_epsilon); tray_width = hdd_width + bar_thickness; -pla_epsilon = 0.1; + |