acorn: add option to control generated parts
[clinton/3d-models.git] / acorn / acorn-threads.scad
... / ...
CommitLineData
1// Threads for acorn model
2// Copyright (c) 2017 Clinton Ebadi <clinton@unknownlamer.org>
3
4use <screw_threads.scad> // http://www.thingiverse.com/thing:1686322
5
6AUTO_CALCULATE = -1;
7
8acorn_parts = [ "body", "cap", "gasket" ];
9
10internal_thread_tolerance = 0.3;
11external_thread_tolerance = 0.2;
12thread_angle = 50;
13
14
15function contains (x, lst) = len([ for (i = lst) if (x == i) i]) > 0;
16
17module acorn (thread_pitch = 3.0,
18 thread_size = 2.5,
19 thread_height = 3.5,
20 thread_tooth_height = AUTO_CALCULATE,
21
22 inner_d = 24.5,
23 base_height = AUTO_CALCULATE,
24 wall_thickness = AUTO_CALCULATE,
25 outer_d = AUTO_CALCULATE,
26
27 keychain = true) {
28
29 // derived settings
30 wall_thickness = (wall_thickness == AUTO_CALCULATE) ? thread_size : wall_thickness;
31 outer_d = (outer_d == AUTO_CALCULATE) ? inner_d + wall_thickness*2 : outer_d;
32 thread_tooth_height = (thread_tooth_height == AUTO_CALCULATE) ? ((thread_pitch - 0.4 > 0) ? thread_pitch - 0.4 : thread_pitch) : thread_tooth_height;
33 base_height = (base_height == AUTO_CALCULATE) ? inner_d : base_height;
34
35
36 module acorn_thread (outer_d = outer_d, internal = false, ring = true) {
37 if (internal) {
38 outer_ring_d = outer_d+max(thread_size, wall_thickness)+1;
39 echo ("outer ring = ", outer_ring_d);
40 ScrewHole (outer_diam=outer_d, height = thread_height, pitch = thread_pitch, tooth_height = thread_tooth_height, tooth_angle = thread_angle, tolerance=internal_thread_tolerance) {
41 if (ring) cylinder (d = outer_ring_d, h = thread_height);
42 }
43 }
44
45 if (!internal) {
46 difference () {
47 ScrewThread (outer_diam=outer_d, height = thread_height, pitch = thread_pitch, tooth_height = thread_tooth_height, tooth_angle = thread_angle, tolerance=external_thread_tolerance);
48 cylinder (d = outer_d-wall_thickness-thread_size-0.01, h = thread_height * 4, center=true);
49 }
50 }
51 }
52
53 module nut_body (h = base_height, d = outer_d, nub = false) {
54 translate ([0 ,0, h]) {
55 intersection () {
56 union () {
57 resize ([d, d, h*2]) sphere (d=h*2);
58 if (nub) {
59 translate ([0, d/2-wall_thickness/2, -thread_height]) sphere (d=wall_thickness*2, $fs = 0.1);
60 }
61 }
62 translate ([0 ,0, -h/2]) cube ([d*2, d*2, h], center=true);
63 }
64 }
65 }
66
67 module nut () {
68 difference () {
69 nut_body ();
70 translate ([0, 0, wall_thickness + 0.01]) nut_body (d=outer_d-wall_thickness*2, nub=false);
71 }
72
73 translate ([0, 0, base_height-0.1]) acorn_thread (outer_d = outer_d);
74 }
75
76
77 module cap_keychain_holes (hole_d=3, spacing=15 /*12*/) {
78 h=100;
79 translate ([-spacing/2, 0, 0]) cylinder (d=hole_d, h=h, $fs=0.1);
80 translate ([spacing/2, 0, 0]) cylinder (d=hole_d, h=h, $fs=0.1);
81 }
82
83 module cap () {
84 scale_f = outer_d / 171;
85 difference () {
86 scale ([scale_f, scale_f, scale_f]) {
87 difference () {
88 union () {
89 translate ([0, 0, -1]) import ("Acorn_Unthreaded/cap_reduced.stl");
90 echo ("h = ", thread_height/scale_f);
91 cylinder (d = 180, h=thread_height/scale_f);
92 }
93 translate ([0, 0, -0.51]) cube ([200, 200, 1], center=true);
94 }
95 }
96 if (keychain) cap_keychain_holes ();
97 acorn_thread (internal = true, ring = false);
98 }
99 }
100
101 module gasket (gasket_height=0.9) {
102 cylinder (d = outer_d, h = gasket_height, center=true);
103 }
104
105 module nuts () {
106 if (contains ("body", acorn_parts))
107 translate ([outer_d+10, 0, 0,]) nut ();
108 if (contains ("cap", acorn_parts))
109 cap ();
110 if (contains ("gasket", acorn_parts))
111 translate ([-(outer_d+10), 0, 0,]) gasket ();
112 }
113
114 nuts ();
115}
116
117$fs = 1;
118$fa = 1;
119
120acorn ();