author | Michael Krelin <hacker@klever.net> | 2016-06-13 16:00:48 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2016-06-13 16:00:48 (UTC) |
commit | ddcb05f6038a09c767a612a2d8ce984ef6589930 (patch) (unidiff) | |
tree | d26111f71bfa147a525900d1c22fe36e6b5fc3d4 | |
parent | 96c68b7fc20735d0cacb027827282f070403d885 (diff) | |
download | fanductory-ddcb05f6038a09c767a612a2d8ce984ef6589930.zip fanductory-ddcb05f6038a09c767a612a2d8ce984ef6589930.tar.gz fanductory-ddcb05f6038a09c767a612a2d8ce984ef6589930.tar.bz2 |
dualism: output
-rw-r--r-- | fanduct.scad | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/fanduct.scad b/fanduct.scad index b9689c9..0cd89f7 100644 --- a/fanduct.scad +++ b/fanduct.scad | |||
@@ -203,25 +203,52 @@ module fanduct(type=type,ductshape=ductshape,dual=dual) { | |||
203 | } | 203 | } |
204 | } | 204 | } |
205 | if(what=="in") { | 205 | if(what=="in") { |
206 | translate([0,0,-fanduct_elevation-2+epsilon]) | 206 | translate([0,0,-fanduct_elevation-2+epsilon]) |
207 | cylinder(r=fanduct_ir+fanduct_shell*2+fanduct_w+1,h=fanduct_elevation+2); | 207 | cylinder(r=fanduct_ir+fanduct_shell*2+fanduct_w+1,h=fanduct_elevation+2); |
208 | translate([0,0,-hotend_clearance]) | 208 | translate([0,0,-hotend_clearance]) |
209 | rotate([0,0,30]) | 209 | rotate([0,0,30]) |
210 | cylinder(r1=hotend_clearance*2,r2=0,h=hotend_clearance*2,$fn=6); | 210 | cylinder(r1=hotend_clearance*2,r2=0,h=hotend_clearance*2,$fn=6); |
211 | } | 211 | } |
212 | } | 212 | } |
213 | } | 213 | } |
214 | 214 | ||
215 | if(type=="circular") circus(what); | 215 | module dual(what=what) { |
216 | module hulls(spots=dual_spots) { | ||
217 | for(my=[0,1]) mirror([0,my,0]) for(pn=[0:1:len(spots)-2]) hull() { | ||
218 | for(p=[spots[pn],spots[pn+1]]) translate(p) children(0); | ||
219 | children([1:$children-1]); | ||
220 | } | ||
221 | } | ||
222 | if(what=="in") { | ||
223 | difference() { | ||
224 | hulls() { | ||
225 | cylinder(d=fanduct_w+2*fanduct_shell,h=2*fanduct_shell+fanduct_h/2); | ||
226 | translate([0,-nozzles_apart/2,-fanduct_elevation-fanduct_blowtarget]) sphere(d=.1); | ||
227 | } | ||
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); | ||
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); | ||
232 | } | ||
233 | }else if(what=="out") { | ||
234 | hulls() { | ||
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); | ||
237 | } | ||
238 | } | ||
239 | } | ||
240 | |||
241 | if(dual) dual(what); | ||
242 | else if(type=="circular") circus(what); | ||
216 | else if(type=="3jets") jets(what); | 243 | else if(type=="3jets") jets(what); |
217 | } | 244 | } |
218 | 245 | ||
219 | // ***air intake | 246 | // ***air intake |
220 | module intake(what) { | 247 | module intake(what) { |
221 | module placeit() { | 248 | module placeit() { |
222 | translate([-fanduct_ir-2*fanduct_shell-fanduct_w-inlet_away,0,fanduct_shell]) | 249 | translate([-fanduct_ir-2*fanduct_shell-fanduct_w-inlet_away,0,fanduct_shell]) |
223 | rotate([0,-90,0]) | 250 | rotate([0,-90,0]) |
224 | children(); | 251 | children(); |
225 | } | 252 | } |
226 | if(what=="in") { | 253 | if(what=="in") { |
227 | placeit() translate([0,-inlet_w/2,0]) { | 254 | placeit() translate([0,-inlet_w/2,0]) { |