forked from T3P3/kossel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hotend_fan.scad
75 lines (68 loc) · 2.15 KB
/
hotend_fan.scad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
include <configuration.scad>;
barrel_radius = 8;
barrel_height = 30;
groove_radius = 6.3;
groove_height = 4.21;
fan_offset = 15;
module hotend_fan() {
difference() {
union() {
translate([0, 2 - fan_offset, 0])
cylinder(r=22, h=40, $fn=6);
translate([0, 0, groove_height/2])
cube([32, 22, groove_height], center=true);
}
// Opposite side cutaway (outgoing airflow).
translate([0, 38, groove_height + 0.01]) rotate([0, 0, 30])
cylinder(r=40, h=200, $fn=6);
// Groove mount insert slot.
translate([0, 10, 0])
cube([2*groove_radius, 20, 20], center=true);
// Keep printed plastic away from the hotend.
intersection() {
translate([0, 18, 0]) rotate([0, 0, 30])
cylinder(r=28, h=100, center=true, $fn=36);
translate([0, 10, barrel_height-5])
cylinder(r1=barrel_radius-1, r2=100, h=55, $fn=36);
}
// Groove mount.
cylinder(r=groove_radius, h=200, center=true, $fn=24);
// J-Head barrel.
translate([0, 0, groove_height + 0.02])
cylinder(r=barrel_radius + 1, h=100, $fn=24);
// Fan mounting surface and screws.
translate([0, -50 - fan_offset, 0])
cube([100, 100, 100], center=true);
for (x = [-16, 16]) {
for (z = [-16, 16]) {
translate([x, -fan_offset, z+20]) rotate([90, 0, 0]) #
cylinder(r=m3_radius, h=16, center=true, $fn=12);
}
}
// Vertical inner space.
intersection() {
cube([22, 100, 100], center=true);
translate([0, -12, groove_height + 2])
cylinder(r=16, h=40, $fn=6);
}
// Air funnel.
difference() {
translate([0, -1 - fan_offset, 20]) rotate([-90, 0, 0])
cylinder(r1=20, r2=0, h=25, $fn=36);
cube([8, 40, 40], center=true);
}
for (a = [60:60:359]) {
rotate([0, 0, a]) translate([0, 12.5, 5]) #
cylinder(r=m3_radius, h=12, center=true, $fn=12);
}
}
}
hotend_fan();
// Hotend barrel.
translate([0, 0, groove_height]) %
cylinder(r=barrel_radius, h=barrel_height);
// 40mm fan.
translate([0, -5 - fan_offset, 20]) % difference() {
cube([40, 10, 40], center=true);
rotate([90, 0, 0,]) cylinder(r=19, h=20, center=true);
}