X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=cable-splice-clamp.scad;h=bd27d86938fbd02dd74748a15d895f89bade8820;hb=ba7c5b240dcdab5fa3f4e3f7823bb828551471f0;hp=92213cf39b2a6c5be883e718d9281459b7ac3708;hpb=fe3ce11970c7a484e8cdc7b1aa77f0843c8bf23a;p=reprap-play.git diff --git a/cable-splice-clamp.scad b/cable-splice-clamp.scad index 92213cf..bd27d86 100644 --- a/cable-splice-clamp.scad +++ b/cable-splice-clamp.scad @@ -2,7 +2,7 @@ include -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 = 3.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], @@ -72,7 +76,14 @@ module CrossSection(plus=0) { [basew + plus, top], [-0.1, top]]); translate([0, -d_OC_r * r0]) - circle(r = r0); + circle(r = r0, $fn=20); + } +} + +module CrossSection(plus=0) { + for (m=[0,1]) { + mirror([m,0]) + CrossSectionHalf(plus); } } @@ -85,11 +96,6 @@ module CrossSectionDemo(){ ////toplevel } } -strap_width = 4 + 0.5; -total_len = 70; - -strap_count = 2; - strap_wall_h = 1.5; strap_wall_l = 2.0; @@ -121,6 +127,12 @@ module HalfClamp(){ ////toplevel } } +module HalfClampPrint(){ ////toplevel + rotate([180,0,0]) + HalfClamp(); +} + //CrossSection(); //CrossSectionDemo(); -HalfClamp(); +//HalfClamp(); +HalfClampPrint();