-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpco-1881.scad
49 lines (43 loc) · 1.52 KB
/
pco-1881.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
/*
PCO-1881 Bottle Neck Model
Based on http://imajeenyus.com/mechanical/20120508_bottle_top_threads/28mm-ISBT-PCO-1881-Finish-3784253-17.pdf
*/
use <threadlib/threadlib.scad>
module pco1881 () {
// The PCO-1881 bottle neck (approximately) as described in the spec
union() {
difference() {
union() {
cylinder(h=20, r=24.20/2);
cylinder(h=1.7, r=25.07/2);
translate([0, 0, 9])
cylinder(h=11.2-0.6-9, r1=24.2/2, r2=28.0/2);
translate([0, 0, 11.2-0.6])
cylinder(h=0.6, r=28.0/2);
translate([0, 0, 11.2])
cylinder(h=20-11.2, r=25.71/2);
translate([0, 0, 14.88])
cylinder(h=1, r1=33.0/2-3.732, r2=33.0/2);
translate([0, 0, 14.88+1])
cylinder(h=17-14.88-1, r=33.00/2);
translate([0, 0, 17])
cylinder(h=3, r=26.19/2);
};
translate([0, 0, 13.94])
rotate_extrude()
translate([12.25+1.08, 0, 0])
circle(1.08, $fn=50);
color("Navy")
translate([0, 0, -0.004])
cylinder(h=20.008, r1=21.74/2, r2=10.870);
};
translate([0, 0, 2.92])
thread("PCO-1881-ext", turns=650/360, higbee_arc=10);
};
};
intersection() {
color("Green")
translate([-50, 0, -50])
cube(100);
!pco1881($fn=120);
}