chiark / gitweb /
bike-lipo-box: adjustments from #1306: add keeper at lipo RH end (still too low)
[reprap-play.git] / cable-splice-clamp.scad
1 // -*- C -*-
2
3 include <commitid.scad>
4
5 rnom = 7.5 / 2;
6
7 // alpha is slope angle, which is half of inner concave angle that
8 //  wire sits in
9 alpha = 40; // degrees
10
11 // mu is minimum number of cable radii that cable tangent point (line)
12 //  with splint ought to be away from edge of split
13 mu = 1/4;
14
15 // wall thickness, and base width as fraction of cable size
16 wall_r = 2.5 / 6.5;
17 base_r = 0.75;
18
19 // for cross-section calculations:
20 //
21 // origin O is at intersection of straight line segments forming walls
22 // C is centre of circle (wire x-section) (of radius r or radius 1)
23 //       which is tangent to lines
24 // T is said tangent points
25 // B is inner base point, which is extension of line from B by mu*r
26
27 sina = sin(alpha);
28 cosa = cos(alpha);
29 tana = sina/cosa;
30
31 // blah_r is blah where r=1
32 // d_AB is distance AB
33 // dy_AB is " " " vertical component
34
35 d_OT_r = tana;
36 d_OB_r = tana + mu;
37
38 d_OC_r = 1/cosa;
39
40 dy_OB_r = d_OB_r * sina;
41
42 // *0 and *1 relate to smallest and largest wire
43 // r[01] is radius
44 // r10 is radius ratio
45
46 r10 = d_OC_r / dy_OB_r;
47
48 r0 = rnom / sqrt(r10);
49 r1 = rnom * sqrt(r10);
50
51 x_B_r =   d_OB_r * cosa;
52 y_B_r = -dy_OB_r;
53
54 x_T_r =         sina;
55 y_T_r = -tana * sina;
56
57 wall_x_r = wall_r / tan(90-alpha);
58
59 top = wall_r * r1 - (d_OC_r - 1) * r0;
60 basew = base_r * rnom;
61
62 echo("dias", r0*2, r1*2, "ratio",r1/r0);
63
64 module CrossSectionHalf(plus=0) {
65   difference(){
66     polygon([[-0.1,                                y_T_r * r0],
67              [x_T_r * r0,                          y_T_r * r0],
68              [x_B_r * r1,                          y_B_r * r1],
69              [x_B_r * r1 + wall_x_r * rnom + plus, y_B_r * r1],
70              [basew                        + plus, top],
71              [-0.1,                                top]]);
72     translate([0, -d_OC_r * r0])
73       circle(r = r0);
74   }
75 }
76
77 module CrossSection(plus=0) {
78   for (m=[0,1]) {
79     mirror([m,0])
80       CrossSectionHalf(plus);
81   }
82 }
83
84 module CrossSectionDemo(){ ////toplevel
85   color("black") CrossSection(2);
86   CrossSection();
87   for (rc=[["red", r1],
88            ["blue",r0]]) {
89     color(rc[0]) translate([0, -d_OC_r * rc[1]]) circle(r = rc[1]);
90   }
91 }
92
93 strap_width = 4 + 0.5;
94 total_len = 70;
95
96 strap_count = 2;
97
98 strap_wall_h = 1.5;
99 strap_wall_l = 2.0;
100
101 writing_dx = total_len / 3;
102 writing_dy = basew*2;
103
104 module HalfClamp(){ ////toplevel
105   difference(){
106     rotate([90,0,0])rotate([0,90,0]){
107       linear_extrude(height=total_len)
108         CrossSection();
109
110       for (i=[0 : strap_count]){
111         if (i*2 != strap_count) {
112           translate([0, 0,
113                      total_len * (i + 0.5) / (strap_count + 1)])
114             for (m=[0,1]){
115               mirror([0,0,m])
116                 translate([0,0, strap_width/2])
117                 linear_extrude(height=strap_wall_l)
118                 CrossSection(strap_wall_h);
119             }
120         }
121       }
122     }
123
124     translate([0, -basew, top])
125       Commitid_BestCount([writing_dx, writing_dy]);
126   }
127 }
128
129 module HalfClampPrint(){ ////toplevel
130   rotate([180,0,0])
131     HalfClamp();
132 }
133
134 //CrossSection();
135 //CrossSectionDemo();
136 //HalfClamp();
137 HalfClampPrint();