author | Michael Krelin <hacker@klever.net> | 2016-06-13 16:50:42 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2016-06-13 16:50:42 (UTC) |
commit | 4ac6f9232e1bc986e9898eb76abb6c317b712be5 (patch) (unidiff) | |
tree | 0e19b0fff371103218f7403d13054c72a6ff7c6a | |
parent | 1afb1ce3d5afc54358f94b19e45d73f382a8246a (diff) | |
download | fanductory-4ac6f9232e1bc986e9898eb76abb6c317b712be5.zip fanductory-4ac6f9232e1bc986e9898eb76abb6c317b712be5.tar.gz fanductory-4ac6f9232e1bc986e9898eb76abb6c317b712be5.tar.bz2 |
dualism: airguides
-rw-r--r-- | fanduct.scad | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/fanduct.scad b/fanduct.scad index fc57c57..c402312 100644 --- a/fanduct.scad +++ b/fanduct.scad | |||
@@ -118,25 +118,25 @@ module fanduct(type=type,ductshape=ductshape,dual=dual) { | |||
118 | sphere(r=fanduct_shell,$fn=30); | 118 | sphere(r=fanduct_shell,$fn=30); |
119 | } | 119 | } |
120 | } | 120 | } |
121 | } | 121 | } |
122 | 122 | ||
123 | // ***output | 123 | // ***output |
124 | module output(what,type=type) { | 124 | module output(what,type=type) { |
125 | module guideline(xyxy) { | 125 | module guideline(xyxy) { |
126 | module pin(xy) { | 126 | module pin(xy) { |
127 | translate([xy[0],xy[1],0]) | 127 | translate([xy[0],xy[1],0]) |
128 | cylinder(d=2*extrusion_width,h=2*fanduct_shell+inlet_h,$fn=6); | 128 | cylinder(d=2*extrusion_width,h=2*fanduct_shell+inlet_h,$fn=6); |
129 | } | 129 | } |
130 | xyxyxy=concat(xyxy,[[0,0]]); | 130 | xyxyxy=concat(xyxy,[[0,dual?nozzles_apart/2:0]]); |
131 | for(i=[0:1:len(xyxyxy)-2]) | 131 | for(i=[0:1:len(xyxyxy)-2]) |
132 | hull() for(j=[i,i+1]) pin(xyxyxy[j]); | 132 | hull() for(j=[i,i+1]) pin(xyxyxy[j]); |
133 | } | 133 | } |
134 | 134 | ||
135 | module circus(what) { | 135 | module circus(what) { |
136 | if(what=="in") { | 136 | if(what=="in") { |
137 | difference() { | 137 | difference() { |
138 | rotate_extrude($fn=smooth_f) | 138 | rotate_extrude($fn=smooth_f) |
139 | polygon([ | 139 | polygon([ |
140 | [0,-fanduct_elevation+fanduct_blowtarget+epsilon], | 140 | [0,-fanduct_elevation+fanduct_blowtarget+epsilon], |
141 | [fanduct_ir+fanduct_shell,fanduct_shell+fanduct_h/2], | 141 | [fanduct_ir+fanduct_shell,fanduct_shell+fanduct_h/2], |
142 | [fanduct_ir+fanduct_shell+fanduct_w/2,0], | 142 | [fanduct_ir+fanduct_shell+fanduct_w/2,0], |
@@ -226,24 +226,36 @@ module fanduct(type=type,ductshape=ductshape,dual=dual) { | |||
226 | translate([0,-nozzles_apart/2,-fanduct_elevation-fanduct_blowtarget]) sphere(d=.1); | 226 | translate([0,-nozzles_apart/2,-fanduct_elevation-fanduct_blowtarget]) sphere(d=.1); |
227 | } | 227 | } |
228 | translate([0,0,epsilon]) hull() for(my=[0:1]) mirror([0,my,0]) for(s=dual_spots) translate(s) | 228 | translate([0,0,epsilon]) hull() for(my=[0:1]) mirror([0,my,0]) for(s=dual_spots) translate(s) |
229 | mirror([0,0,1]) cylinder(d=fanduct_w+2*fanduct_shell+2,h=fanduct_elevation-fanduct_blowtarget+1); | 229 | mirror([0,0,1]) cylinder(d=fanduct_w+2*fanduct_shell+2,h=fanduct_elevation-fanduct_blowtarget+1); |
230 | for(s=[-1,1]) translate([0,s*nozzles_apart/2,-1]) | 230 | for(s=[-1,1]) translate([0,s*nozzles_apart/2,-1]) |
231 | cylinder(r=hotend_clearance,h=fanduct_h+2*fanduct_shell+2,$fn=smooth_f); | 231 | cylinder(r=hotend_clearance,h=fanduct_h+2*fanduct_shell+2,$fn=smooth_f); |
232 | } | 232 | } |
233 | }else if(what=="out") { | 233 | }else if(what=="out") { |
234 | hulls() { | 234 | hulls() { |
235 | translate([0,0,fanduct_shell]) cylinder(d=fanduct_w,h=fanduct_h/2-fanduct_shell/2); | 235 | translate([0,0,fanduct_shell]) cylinder(d=fanduct_w,h=fanduct_h/2-fanduct_shell/2); |
236 | translate([0,-nozzles_apart/2,-fanduct_elevation+fanduct_blowtarget]) sphere(d=.1); | 236 | translate([0,-nozzles_apart/2,-fanduct_elevation+fanduct_blowtarget]) sphere(d=.1); |
237 | } | 237 | } |
238 | }else if(what=="airguides") { | ||
239 | far = fanduct_ir+fanduct_shell+fanduct_w; | ||
240 | near = fanduct_ir; | ||
241 | union() { | ||
242 | for(my=[0,1]) mirror([0,my,0]) { | ||
243 | guideline([ [-far ,0], [0,0] ]); | ||
244 | guideline([ [-far ,inlet_w/2/4], | ||
245 | [-near ,nozzles_apart/2] ]); | ||
246 | guideline([ [-near-fanduct_w/3,nozzles_apart/2+near+fanduct_w/3] ]); | ||
247 | guideline([ [0 ,nozzles_apart/2+near+fanduct_w/2] ]); | ||
248 | } | ||
249 | } | ||
238 | } | 250 | } |
239 | } | 251 | } |
240 | 252 | ||
241 | if(dual) dual(what); | 253 | if(dual) dual(what); |
242 | else if(type=="circular") circus(what); | 254 | else if(type=="circular") circus(what); |
243 | else if(type=="3jets") jets(what); | 255 | else if(type=="3jets") jets(what); |
244 | } | 256 | } |
245 | 257 | ||
246 | // ***air intake | 258 | // ***air intake |
247 | module intake(what) { | 259 | module intake(what) { |
248 | module placeit() { | 260 | module placeit() { |
249 | translate([-fanduct_ir-2*fanduct_shell-fanduct_w-inlet_away,0,fanduct_shell]) | 261 | translate([-fanduct_ir-2*fanduct_shell-fanduct_w-inlet_away,0,fanduct_shell]) |