author | Michael Krelin <hacker@klever.net> | 2016-06-11 14:08:31 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2016-06-11 14:08:31 (UTC) |
commit | 0398dd6a4e41ec26d48ad02caffc319f34cbfcb1 (patch) (unidiff) | |
tree | 6b5c5cb97ac2ad98179ebddd5db08757994eaa29 | |
parent | 81e4c02f584b5404628cda56502d0eedbc93b8f1 (diff) | |
download | fanductory-0398dd6a4e41ec26d48ad02caffc319f34cbfcb1.zip fanductory-0398dd6a4e41ec26d48ad02caffc319f34cbfcb1.tar.gz fanductory-0398dd6a4e41ec26d48ad02caffc319f34cbfcb1.tar.bz2 |
selectable round/square duct section
-rw-r--r-- | fanduct.scad | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/fanduct.scad b/fanduct.scad index 53630a3..746f753 100644 --- a/fanduct.scad +++ b/fanduct.scad | |||
@@ -23,44 +23,57 @@ jet_angle = 60-2; // angular width of the jet | |||
23 | inlet_w = 12.5; // inlet width | 23 | inlet_w = 12.5; // inlet width |
24 | inlet_h = 17; // inlet height | 24 | inlet_h = 17; // inlet height |
25 | inlet_l = 7; // inlet length of protrusion (or depth of intrusion:)) | 25 | inlet_l = 7; // inlet length of protrusion (or depth of intrusion:)) |
26 | inlet_away = 15;// how far away inlet is | 26 | inlet_away = 15;// how far away inlet is |
27 | 27 | ||
28 | hotend_clearance = heater_clearance; | 28 | hotend_clearance = heater_clearance; |
29 | 29 | ||
30 | snapper_d = 8; snapper_overlap=0.2;// snip snap | 30 | snapper_d = 8; snapper_overlap=0.2;// snip snap |
31 | 31 | ||
32 | smooth_f = 120; | 32 | smooth_f = 120; |
33 | 33 | ||
34 | type="3jets"; // "3jets" ; // circular|3jets | 34 | type="3jets"; // "3jets" ; // circular|3jets |
35 | ductshape="square"; // square|round | ||
35 | 36 | ||
36 | 37 | ||
37 | module fanduct(type=type) { | 38 | module fanduct(type=type,ductshape=ductshape) { |
38 | 39 | ||
39 | // ***duct is all around! | 40 | // ***duct is all around! |
40 | module duct(what) { | 41 | module duct(what) { |
41 | if(what=="in") { | 42 | if(what=="in") { |
42 | sh = fanduct_w+2*fanduct_shell; sv = fanduct_h+2*fanduct_shell; | 43 | sh = fanduct_w+2*fanduct_shell; sv = fanduct_h+2*fanduct_shell; |
43 | smax = max(sh,sv); | 44 | smax = max(sh,sv); |
44 | rotate_extrude($fn=smooth_f) | 45 | rotate_extrude($fn=smooth_f) |
45 | translate([sh/2+fanduct_ir,sv/2]) | 46 | if(ductshape=="round") |
46 | scale([sh/smax,sv/smax]) | 47 | translate([sh/2+fanduct_ir,sv/2]) |
47 | circle(d=smax,$fn=4*smax); | 48 | scale([sh/smax,sv/smax]) |
49 | circle(d=smax,$fn=4*smax); | ||
50 | else if(ductshape=="square") | ||
51 | translate([fanduct_ir,0]) | ||
52 | square([sh,sv]); | ||
48 | }else if(what=="out") { | 53 | }else if(what=="out") { |
49 | sh = fanduct_w; sv = fanduct_h; | 54 | sh = fanduct_w; sv = fanduct_h; |
50 | smax = max(sh,sv); | 55 | smax = max(sh,sv); |
51 | rotate_extrude($fn=smooth_f) | 56 | rotate_extrude($fn=smooth_f) |
52 | translate([sh/2+fanduct_shell+fanduct_ir,sv/2+fanduct_shell]) | 57 | if(ductshape=="round") |
53 | scale([sh/smax,sv/smax]) | 58 | translate([sh/2+fanduct_shell+fanduct_ir,sv/2+fanduct_shell]) |
54 | circle(d=smax,$fn=4*smax); | 59 | scale([sh/smax,sv/smax]) |
60 | circle(d=smax,$fn=4*smax); | ||
61 | else if(ductshape=="square") | ||
62 | translate([fanduct_ir+fanduct_shell,fanduct_shell]) | ||
63 | union() { | ||
64 | square([fanduct_w,fanduct_h/2]); | ||
65 | translate([fanduct_w/2,fanduct_h-fanduct_w/2]) | ||
66 | rotate([0,0,90]) circle(d=fanduct_w,$fn=36); | ||
67 | } | ||
55 | } | 68 | } |
56 | } | 69 | } |
57 | 70 | ||
58 | // ***bumps for easier position adjustments in line with hotend | 71 | // ***bumps for easier position adjustments in line with hotend |
59 | module marks(what) { | 72 | module marks(what) { |
60 | if(what=="in") { | 73 | if(what=="in") { |
61 | for(y=[-1,1]) | 74 | for(y=[-1,1]) |
62 | hull() for(z=[0,-fanduct_shell-fanduct_h/2]) | 75 | hull() for(z=[0,-fanduct_shell-fanduct_h/2]) |
63 | translate([0,y*(fanduct_ir+fanduct_shell+fanduct_w/2),fanduct_shell*2+fanduct_h+z]) | 76 | translate([0,y*(fanduct_ir+fanduct_shell+fanduct_w/2),fanduct_shell*2+fanduct_h+z]) |
64 | rotate([90,0,0]) { | 77 | rotate([90,0,0]) { |
65 | cylinder(r=fanduct_shell,h=fanduct_w,center=true,$fn=30); | 78 | cylinder(r=fanduct_shell,h=fanduct_w,center=true,$fn=30); |
66 | for(z=[-1,1]) translate([0,0,z*fanduct_w/2]) | 79 | for(z=[-1,1]) translate([0,0,z*fanduct_w/2]) |
@@ -231,25 +244,25 @@ module fanduct(type=type) { | |||
231 | } | 244 | } |
232 | intersection() { | 245 | intersection() { |
233 | union() { | 246 | union() { |
234 | output("airguides"); | 247 | output("airguides"); |
235 | sphere(d=epsilon); | 248 | sphere(d=epsilon); |
236 | } | 249 | } |
237 | union() { | 250 | union() { |
238 | duct("in"); output("in"); intake("in"); | 251 | duct("in"); output("in"); intake("in"); |
239 | } | 252 | } |
240 | } | 253 | } |
241 | } | 254 | } |
242 | 255 | ||
243 | view="full"; // hcut|vcut|* | 256 | view="vcut"; // hcut|vcut|* |
244 | 257 | ||
245 | hinfinity=4*(fanduct_ir+fanduct_shell*2+fanduct_w+inlet_away); | 258 | hinfinity=4*(fanduct_ir+fanduct_shell*2+fanduct_w+inlet_away); |
246 | vinfinity=2*(fanduct_shell*2+fanduct_h+inlet_h); | 259 | vinfinity=2*(fanduct_shell*2+fanduct_h+inlet_h); |
247 | if(view=="hcut") { | 260 | if(view=="hcut") { |
248 | difference() { | 261 | difference() { |
249 | fanduct(); | 262 | fanduct(); |
250 | translate([-hinfinity/2,-hinfinity/2,fanduct_shell+fanduct_h/2]) | 263 | translate([-hinfinity/2,-hinfinity/2,fanduct_shell+fanduct_h/2]) |
251 | cube(size=[hinfinity,hinfinity,vinfinity]); | 264 | cube(size=[hinfinity,hinfinity,vinfinity]); |
252 | } | 265 | } |
253 | }else if(view=="vcut") { | 266 | }else if(view=="vcut") { |
254 | difference() { | 267 | difference() { |
255 | fanduct(); | 268 | fanduct(); |