summaryrefslogtreecommitdiff
authorMichael Krelin <hacker@klever.net>2018-08-10 09:42:10 (UTC)
committer Michael Krelin <hacker@klever.net>2018-08-10 09:42:10 (UTC)
commit0f096a81ab50e7dd4a9e949f7b4c49e701d3652c (patch) (unidiff)
treea09720eb2b2cb60fc3589a81f619a3ed3f4089a1
parent0c87c56ff30c8f72e6348482a95a07841ce93e10 (diff)
downloadextrudery-0f096a81ab50e7dd4a9e949f7b4c49e701d3652c.zip
extrudery-0f096a81ab50e7dd4a9e949f7b4c49e701d3652c.tar.gz
extrudery-0f096a81ab50e7dd4a9e949f7b4c49e701d3652c.tar.bz2
another: add tensioner screw tolerance
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--another.scad11
1 files changed, 6 insertions, 5 deletions
diff --git a/another.scad b/another.scad
index 7a3b0ac..da5f695 100644
--- a/another.scad
+++ b/another.scad
@@ -57,6 +57,7 @@ module the_extruder(
57 knob_bore_d_tolerance=.6, 57 knob_bore_d_tolerance=.6,
58 st_nut_h_tolerance=.2, 58 st_nut_h_tolerance=.2,
59 st_nut_d_tolerance=.2,/* TODO: make it st_nut_w_tolerance */ 59 st_nut_d_tolerance=.2,/* TODO: make it st_nut_w_tolerance */
60 st_screw_d_tolerance=.3,
60 61
61 what="lever", // lever|body|knob|springpad|* 62 what="lever", // lever|body|knob|springpad|*
62 left=false, 63 left=false,
@@ -216,11 +217,11 @@ module the_extruder(
216 hull() for(o=[0,spring_d]) translate([0,-o,0]) 217 hull() for(o=[0,spring_d]) translate([0,-o,0])
217 rotate([0,0,30]) 218 rotate([0,0,30])
218 cylinder(d=st_nut_d+st_nut_d_tolerance,h=st_nut_h+st_nut_h_tolerance,$fn=6); 219 cylinder(d=st_nut_d+st_nut_d_tolerance,h=st_nut_h+st_nut_h_tolerance,$fn=6);
219 translate([0,0,-1]) cylinder(d=st_screw_d,h=fsw+2,$fn=fnd*st_screw_d); 220 translate([0,0,-1]) cylinder(d=st_screw_d+st_screw_d_tolerance,h=fsw+2,$fn=fnd*(st_screw_d+st_screw_d_tolerance));
220 bigd = spring_d+spring_d_clearance; 221 bigd = spring_d+spring_d_clearance;
221 hf = (bigd-st_screw_d)/2; 222 hf = (bigd-st_screw_d-st_screw_d_tolerance)/2;
222 translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell-epsilon]) 223 translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell-epsilon])
223 cylinder(d1=st_screw_d,d2=bigd, 224 cylinder(d1=st_screw_d+st_screw_d_tolerance,d2=bigd,
224 h=hf+epsilon, $fn=fnd*bigd); 225 h=hf+epsilon, $fn=fnd*bigd);
225 translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+hf-epsilon]) 226 translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+hf-epsilon])
226 cylinder(d=bigd,h=fsw+1,$fn=fnd*bigd); 227 cylinder(d=bigd,h=fsw+1,$fn=fnd*bigd);
@@ -335,7 +336,7 @@ module the_extruder(
335 }//body module 336 }//body module
336 337
337 module springpad() { 338 module springpad() {
338 smalld=st_screw_d+2*extrusion_width; 339 smalld=st_screw_d+st_screw_d_tolerance+2*extrusion_width;
339 bigd = spring_d+spring_d_clearance/2; 340 bigd = spring_d+spring_d_clearance/2;
340 hf = (bigd-smalld)/2; 341 hf = (bigd-smalld)/2;
341 translate([-gearbox_d/2+st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+1,-longwing,filament_elevation]) 342 translate([-gearbox_d/2+st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+1,-longwing,filament_elevation])
@@ -348,7 +349,7 @@ module the_extruder(
348 sphere(d=spring_d*3/4,$fn=fnd*spring_d*3/4); 349 sphere(d=spring_d*3/4,$fn=fnd*spring_d*3/4);
349 } 350 }
350 translate([0,0,-epsilon]) 351 translate([0,0,-epsilon])
351 cylinder(d=st_screw_d,h=2*hf+epsilon,$fn=fnd*st_screw_d); 352 cylinder(d=st_screw_d+st_screw_d_tolerance,h=2*hf+epsilon,$fn=fnd*(st_screw_d+st_screw_d_tolerance));
352 } 353 }
353 } 354 }
354 355