4279 |
jacho |
1 |
$fn=40; // model faces resolution. |
|
|
2 |
//include <../configuration.scad> |
|
|
3 |
|
|
|
4 |
|
|
|
5 |
|
|
|
6 |
//stator4 (roztec_sroubu,uchyt_prumer_sroubu,vyska_stator4,sila_materialu,uchyt_vyska_matky,uchyt_prumer_orechu,kabel_prumer); |
|
|
7 |
|
|
|
8 |
module stator4 (roztec_sroubu,uchyt_prumer_sroubu,vyska_stator4,sila_materialu,uchyt_vyska_matky,uchyt_prumer_orechu,kabel_prumer) |
|
|
9 |
{ |
|
|
10 |
difference() |
|
|
11 |
{ |
|
|
12 |
//translate([90,0,0]) |
|
|
13 |
|
|
|
14 |
cube(size = [roztec_sroubu+uchyt_prumer_orechu+2*sila_materialu,roztec_sroubu+uchyt_prumer_orechu+2*sila_materialu, vyska_stator4], center = true); |
|
|
15 |
|
|
|
16 |
//díry pro uchycení anemometru |
|
|
17 |
translate([roztec_sroubu/2,roztec_sroubu/2,0]) |
|
|
18 |
cylinder (h = vyska_stator4+0.1, r=uchyt_prumer_sroubu/2, center = true, $fn=100); |
|
|
19 |
|
|
|
20 |
translate([-roztec_sroubu/2,roztec_sroubu/2,0]) |
|
|
21 |
cylinder (h = vyska_stator4+0.1, r=uchyt_prumer_sroubu/2, center = true, $fn=100); |
|
|
22 |
|
|
|
23 |
translate([roztec_sroubu/2,-roztec_sroubu/2,0]) |
|
|
24 |
cylinder (h = vyska_stator4+0.1, r=uchyt_prumer_sroubu/2, center = true, $fn=100); |
|
|
25 |
|
|
|
26 |
translate([-roztec_sroubu/2,-roztec_sroubu/2,0]) |
|
|
27 |
cylinder (h = vyska_stator4+0.1, r=uchyt_prumer_sroubu/2, center = true, $fn=100); |
|
|
28 |
|
|
|
29 |
|
|
|
30 |
//dira na kabel |
|
|
31 |
|
|
|
32 |
cylinder (h = vyska_stator4+0.1, r=(kabel_prumer/2+0.1), center = true, $fn=100); |
|
|
33 |
|
|
|
34 |
//díry pro matky |
|
|
35 |
translate([roztec_sroubu/2,roztec_sroubu/2,vyska_stator4/2-uchyt_vyska_matky/2]) |
|
|
36 |
cylinder (h = uchyt_vyska_matky+0.1, r=uchyt_prumer_orechu/2, center = true, $fn=100); |
|
|
37 |
|
|
|
38 |
translate([-roztec_sroubu/2,roztec_sroubu/2,vyska_stator4/2-uchyt_vyska_matky/2]) |
|
|
39 |
cylinder (h = uchyt_vyska_matky+0.1, r=uchyt_prumer_orechu/2, center = true, $fn=100); |
|
|
40 |
|
|
|
41 |
translate([roztec_sroubu/2,-roztec_sroubu/2,vyska_stator4/2-uchyt_vyska_matky/2]) |
|
|
42 |
cylinder (h = uchyt_vyska_matky+0.1, r=uchyt_prumer_orechu/2, center = true, $fn=100); |
|
|
43 |
|
|
|
44 |
translate([-roztec_sroubu/2,-roztec_sroubu/2,vyska_stator4/2-uchyt_vyska_matky/2]) |
|
|
45 |
cylinder (h = uchyt_vyska_matky+0.1, r=uchyt_prumer_orechu/2, center = true, $fn=100); |
|
|
46 |
} |
|
|
47 |
|
|
|
48 |
} |
|
|
49 |
|
|
|
50 |
|