-
Notifications
You must be signed in to change notification settings - Fork 1
/
nibm_pbock060.scad
43 lines (38 loc) · 1.18 KB
/
nibm_pbock060.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
include <threads_w_cut.scad>
// Module for Peter Bock module 060
// Min diameter of outer cylinder around nib module
nibm_module_mind= 7.3+0.4*4;
// Height of printed part of nib module
nibm_h= 27.5;
// Diameter of the cylinder in wich nib goes freely
nibm_nib_d= 7.8;
// Height of the nib out of the module
nibm_nib_h= 17;
//$fn=200;
nibm_tollerance=0.4;
module nibm_cut(center= true)
{
translate([0, 0, center ? - nibm_h/2 : 0])
union()
{
translate([0,0,nibm_h-0.5 - 0.01])
cylinder(d2=7.7+nibm_tollerance, d1=7.3+nibm_tollerance, h=0.5+0.02);
translate([0,0,nibm_h-3 - 0.01])
cylinder(d=7.3+nibm_tollerance, h=3-0.5+0.02);
translate([0,0, 4 - 0.01])
cylinder(d=6.8+nibm_tollerance, h=nibm_h-3-4+0.02);
translate([0,0, -0.01])
metric_thread_w_entry (diameter= 6.5+nibm_tollerance, pitch= 0.6, length= 4 + 0.02, internal=true, cut_bottom=true, cut_top=false);
}
}
module nubm_minimal(center= true)
{
translate([0, 0, center ? - nibm_h/2 : 0])
difference()
{
cylinder(d= nibm_module_mind, h= nibm_h, center= false);
nibm_cut(center);
}
}
//nibm_cut(center= false);
//nubm_minimal(center= false);