chiark / gitweb /
fairphone-case: adjust length from v8
[reprap-play.git] / cable-splice-clamp.scad
index 55f219a0bf65a293ec5457b627eb1b6b0572f3f4..f71c848756b259723e6fcb078acf912114ec9a5f 100644 (file)
@@ -2,7 +2,7 @@
 
 include <commitid.scad>
 
-rnom = 9;
+rnom = 3.5 / 2;
 
 // alpha is slope angle, which is half of inner concave angle that
 //  wire sits in
@@ -13,9 +13,15 @@ alpha = 40; // degrees
 mu = 1/4;
 
 // wall thickness, and base width as fraction of cable size
-wall_r = 1.5 / 6.5;
+wall_r = 2.5 / 6.5;
 base_r = 0.75;
 
+total_len = 60;
+
+strap_width = 3.0 + 0.5;
+
+strap_count = 4;
+
 // for cross-section calculations:
 //
 // origin O is at intersection of straight line segments forming walls
@@ -54,16 +60,14 @@ y_B_r = -dy_OB_r;
 x_T_r =         sina;
 y_T_r = -tana * sina;
 
-top_r = wall_r - (d_OC_r - 1);
-
 wall_x_r = wall_r / tan(90-alpha);
 
-top = top_r * r1;
+top = wall_r * r1 - (d_OC_r - 1) * r0;
 basew = base_r * rnom;
 
-echo(r0,r1, "ratio",r1/r0);
+echo("dias", r0*2, r1*2, "ratio",r1/r0);
 
-module CrossSection(plus=0) {
+module CrossSectionHalf(plus=0) {
   difference(){
     polygon([[-0.1,                                y_T_r * r0],
             [x_T_r * r0,                          y_T_r * r0],
@@ -76,6 +80,13 @@ module CrossSection(plus=0) {
   }
 }
 
+module CrossSection(plus=0) {
+  for (m=[0,1]) {
+    mirror([m,0])
+      CrossSectionHalf(plus);
+  }
+}
+
 module CrossSectionDemo(){ ////toplevel
   color("black") CrossSection(2);
   CrossSection();
@@ -85,5 +96,43 @@ module CrossSectionDemo(){ ////toplevel
   }
 }
 
+strap_wall_h = 1.5;
+strap_wall_l = 2.0;
+
+writing_dx = total_len / 3;
+writing_dy = basew*2;
+
+module HalfClamp(){ ////toplevel
+  difference(){
+    rotate([90,0,0])rotate([0,90,0]){
+      linear_extrude(height=total_len)
+       CrossSection();
+
+      for (i=[0 : strap_count]){
+       if (i*2 != strap_count) {
+         translate([0, 0,
+                    total_len * (i + 0.5) / (strap_count + 1)])
+           for (m=[0,1]){
+             mirror([0,0,m])
+               translate([0,0, strap_width/2])
+               linear_extrude(height=strap_wall_l)
+               CrossSection(strap_wall_h);
+           }
+       }
+      }
+    }
+
+    translate([0, -basew, top])
+      Commitid_BestCount([writing_dx, writing_dy]);
+  }
+}
+
+module HalfClampPrint(){ ////toplevel
+  rotate([180,0,0])
+    HalfClamp();
+}
+
 //CrossSection();
-CrossSectionDemo();
+//CrossSectionDemo();
+//HalfClamp();
+HalfClampPrint();