-rw-r--r-- | fanduct.scad | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/fanduct.scad b/fanduct.scad index a843023..41048bf 100644 --- a/fanduct.scad +++ b/fanduct.scad | |||
@@ -1,95 +1,97 @@ | |||
1 | use <snapper.scad>; | 1 | use <snapper.scad>; |
2 | extrusion_width=.5; layer_height=.2; // print parameters | 2 | extrusion_width=.5; layer_height=.2; // print parameters |
3 | 3 | ||
4 | epsilon=.005; // for finer cuts | 4 | epsilon=.005; // for finer cuts |
5 | 5 | ||
6 | heater_w = 16; // heatblock width | 6 | heater_w = 16; // heatblock width |
7 | heater_l = 20; // heatblock length | 7 | heater_l = 20; // heatblock length |
8 | nozzle_offset=4.5;// nozzle offset from the edge of heatblock | 8 | nozzle_offset=4.5;// nozzle offset from the edge of heatblock |
9 | 9 | ||
10 | fanduct_elevation = 3; // fanduct elevation above nozzle tip | 10 | fanduct_elevation = 3; // fanduct elevation above nozzle tip |
11 | fanduct_h = 6; // inner height of the duct | 11 | fanduct_h = 6; // inner height of the duct |
12 | fanduct_w = 6; // inner width of the duct | 12 | fanduct_w = 6; // inner width of the duct |
13 | fanduct_shell=1.2; // shell thickness | 13 | fanduct_shell=1.2; // shell thickness |
14 | fanduct_ir = sqrt(pow(heater_w/2,2)+pow(heater_l-nozzle_offset,2))+5;// inner radius | 14 | fanduct_ir = sqrt(pow(heater_w/2,2)+pow(heater_l-nozzle_offset,2))+5;// inner radius |
15 | 15 | ||
16 | jet_angle = 60; // angular width of the jet | 16 | jet_angle = 60; // angular width of the jet |
17 | 17 | ||
18 | inlet_w = 12.5; // inlet width | 18 | inlet_w = 12.5; // inlet width |
19 | inlet_h = 17; // inlet height | 19 | inlet_h = 17; // inlet height |
20 | inlet_l = 7; // inlet length of protrusion (or depth of intrusion:)) | 20 | inlet_l = 7; // inlet length of protrusion (or depth of intrusion:)) |
21 | inlet_away = 15;// how far away inlet is | 21 | inlet_away = 15;// how far away inlet is |
22 | 22 | ||
23 | hotend_clearance = 12; | 23 | hotend_clearance = 12; |
24 | 24 | ||
25 | snapper_d = 8; snapper_overlap=0.2;// snip snap | 25 | snapper_d = 8; snapper_overlap=0.2;// snip snap |
26 | 26 | ||
27 | smooth_f = 120; | 27 | smooth_f = 120; |
28 | 28 | ||
29 | type="3jets"; // "3jets" ; // circular|3jets | 29 | type="3jets"; // "3jets" ; // circular|3jets |
30 | 30 | ||
31 | 31 | ||
32 | module fanduct(type=type) { | 32 | module fanduct(type=type) { |
33 | 33 | ||
34 | // ***duct is all around! | 34 | // ***duct is all around! |
35 | module duct(what) { | 35 | module duct(what) { |
36 | if(what=="in") { | 36 | if(what=="in") { |
37 | sh = fanduct_w+2*fanduct_shell; sv = fanduct_h+2*fanduct_shell; | ||
38 | smax = max(sh,sv); | ||
37 | rotate_extrude($fn=smooth_f) | 39 | rotate_extrude($fn=smooth_f) |
38 | translate([fanduct_ir,0]) | 40 | translate([sh/2+fanduct_ir,sv/2]) |
39 | square([fanduct_w+2*fanduct_shell,fanduct_h+2*fanduct_shell]); | 41 | scale([sh/smax,sv/smax]) |
42 | circle(d=smax,$fn=4*smax); | ||
40 | }else if(what=="out") { | 43 | }else if(what=="out") { |
44 | sh = fanduct_w; sv = fanduct_h; | ||
45 | smax = max(sh,sv); | ||
41 | rotate_extrude($fn=smooth_f) | 46 | rotate_extrude($fn=smooth_f) |
42 | translate([fanduct_ir+fanduct_shell,fanduct_shell]) | 47 | translate([sh/2+fanduct_shell+fanduct_ir,sv/2+fanduct_shell]) |
43 | union() { | 48 | scale([sh/smax,sv/smax]) |
44 | square([fanduct_w,fanduct_h/2]); | 49 | circle(d=smax,$fn=4*smax); |
45 | translate([fanduct_w/2,fanduct_h-fanduct_w/2]) | ||
46 | rotate([0,0,90]) circle(d=fanduct_w,$fn=36); | ||
47 | } | ||
48 | } | 50 | } |
49 | } | 51 | } |
50 | 52 | ||
51 | // ***bumps for easier position adjustments in line with hotend | 53 | // ***bumps for easier position adjustments in line with hotend |
52 | module marks(what) { | 54 | module marks(what) { |
53 | if(what=="in") { | 55 | if(what=="in") { |
54 | for(y=[-1,1]) | 56 | for(y=[-1,1]) |
55 | hull() for(z=[0,-fanduct_shell-fanduct_h/2]) | 57 | hull() for(z=[0,-fanduct_shell-fanduct_h/2]) |
56 | translate([0,y*(fanduct_ir+fanduct_shell+fanduct_w/2),fanduct_shell*2+fanduct_h+z]) | 58 | translate([0,y*(fanduct_ir+fanduct_shell+fanduct_w/2),fanduct_shell*2+fanduct_h+z]) |
57 | rotate([90,0,0]) { | 59 | rotate([90,0,0]) { |
58 | cylinder(r=fanduct_shell,h=fanduct_w,center=true,$fn=30); | 60 | cylinder(r=fanduct_shell,h=fanduct_w,center=true,$fn=30); |
59 | for(z=[-1,1]) translate([0,0,z*fanduct_w/2]) | 61 | for(z=[-1,1]) translate([0,0,z*fanduct_w/2]) |
60 | sphere(r=fanduct_shell,$fn=30); | 62 | sphere(r=fanduct_shell,$fn=30); |
61 | } | 63 | } |
62 | } | 64 | } |
63 | } | 65 | } |
64 | 66 | ||
65 | // ***output | 67 | // ***output |
66 | module output(what,type=type) { | 68 | module output(what,type=type) { |
67 | module guideline(xyxy) { | 69 | module guideline(xyxy) { |
68 | module pin(xy) { | 70 | module pin(xy) { |
69 | translate([xy[0],xy[1],0]) | 71 | translate([xy[0],xy[1],0]) |
70 | cylinder(d=2*extrusion_width,h=2*fanduct_shell+inlet_h,$fn=6); | 72 | cylinder(d=2*extrusion_width,h=2*fanduct_shell+inlet_h,$fn=6); |
71 | } | 73 | } |
72 | xyxyxy=concat(xyxy,[[0,0]]); | 74 | xyxyxy=concat(xyxy,[[0,0]]); |
73 | for(i=[0:1:len(xyxyxy)-2]) | 75 | for(i=[0:1:len(xyxyxy)-2]) |
74 | hull() for(j=[i,i+1]) pin(xyxyxy[j]); | 76 | hull() for(j=[i,i+1]) pin(xyxyxy[j]); |
75 | } | 77 | } |
76 | 78 | ||
77 | module circus(what) { | 79 | module circus(what) { |
78 | if(what=="in") { | 80 | if(what=="in") { |
79 | difference() { | 81 | difference() { |
80 | rotate_extrude($fn=smooth_f) | 82 | rotate_extrude($fn=smooth_f) |
81 | polygon([ | 83 | polygon([ |
82 | [0,-fanduct_elevation], | 84 | [0,-fanduct_elevation], |
83 | [fanduct_ir+fanduct_shell,fanduct_shell+fanduct_h/2], | 85 | [fanduct_ir+fanduct_shell,fanduct_shell+fanduct_h/2], |
84 | [fanduct_ir+fanduct_shell+fanduct_w/2,0], | 86 | [fanduct_ir+fanduct_shell+fanduct_w/2,0], |
85 | [0,-fanduct_elevation-.1]]); | 87 | [0,-fanduct_elevation-.1]]); |
86 | translate([0,0,-1]) | 88 | translate([0,0,-1]) |
87 | cylinder(r=hotend_clearance,h=fanduct_h+2*fanduct_shell+2,$fn=smooth_f); | 89 | cylinder(r=hotend_clearance,h=fanduct_h+2*fanduct_shell+2,$fn=smooth_f); |
88 | mirror([0,0,1]) | 90 | mirror([0,0,1]) |
89 | translate([0,0,-epsilon]) | 91 | translate([0,0,-epsilon]) |
90 | cylinder(r=fanduct_ir+fanduct_shell+1,h=fanduct_elevation+.1+2); | 92 | cylinder(r=fanduct_ir+fanduct_shell+1,h=fanduct_elevation+.1+2); |
91 | } | 93 | } |
92 | }else if(what=="out") { | 94 | }else if(what=="out") { |
93 | difference() { | 95 | difference() { |
94 | rotate_extrude($fn=smooth_f) | 96 | rotate_extrude($fn=smooth_f) |
95 | polygon([ | 97 | polygon([ |