X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=filamentspool.scad;h=89f3cfb3a0ac97e069efddde6a57a01fd7fb87d7;hp=4babfbbef199b953c7e8d7f90aa296fedd873b38;hb=9b824b304dfc50b89172ec9dbf53b0076e526097;hpb=1527bcde0076d3aa4bdffdef3b803d3f178f897f diff --git a/filamentspool.scad b/filamentspool.scad index 4babfbb..89f3cfb 100644 --- a/filamentspool.scad +++ b/filamentspool.scad @@ -5,7 +5,7 @@ fdia=1.75; slop=0.5; bigslop=slop*2; -exteffrad = 85; +exteffrad = 70; hubeffrad = 30; hubbigrad = 20; hublwidth = 3; @@ -57,14 +57,17 @@ towercliph = 16; towerclipcount = 3; towerpillarw = 5; +axlepinrad = 2; +axlepintabrad = 5; + washerthick = 1.2; +washerrad = hubaxlerad + 7.5; ratchetpawl=ratchetstep-ratchettooth-bigslop*2; include include include -include channelwidth = prongthick + slop; channeldepth = prongwidth + ratchettoothheight; @@ -238,9 +241,23 @@ module ArmExtender(){ ////toplevel hb=doveclipheight); } +module AxlePin(){ ////toplevel + pinr = axlepinrad - slop; + intersection(){ + translate([0, 0, pinr*0.7]) { + translate([0, -washerrad, 0]) rotate([-90,0,0]) + cylinder(r=pinr, h=washerrad*2, $fn=10); + translate([-axlepintabrad, hubaxlerad, -axlepinrad]) + cube([axlepintabrad*2, axlepinrad*2, axlepinrad*2]); + } + translate([-50,-50,0]) cube([100,100,50]); + } +} + module Axle(){ ////toplevel pillarswidth = DoveClipPairSane_width(towerclipcount); +if(0) translate([-axlehorizoffset, -axlevertheight, 0]) { rotate([0,0,-90]) DoveClipPairSane(h=towercliph, count=towerclipcount, baseextend=3); @@ -251,27 +268,51 @@ module Axle(){ ////toplevel pillarw=towerpillarw); } - axleclearlen = hubaxlelen + slop*2 + washerthick; - axlerad = hubaxlerad+slop; + axleclearlen = hubaxlelen + slop*3 + washerthick*2; + axlerad = hubaxlerad-slop; bump = axlerad * 0.2; + shift = axlerad-bump; + joinbelowallow = 3; intersection(){ - difference() { - translate([-1, 0, axlerad-bump]) - rotate([0,90,0]) - cylinder(r = axlerad, h = 1 + axleclearlen + 6); - translate([axleclearlen, 0, 0]) - mirror([0,0,1]) - rotate([0,0,90]) - SplitPinCavity(); + translate([0, 0, shift]) { + difference() { + union(){ + translate([-1, 0, 0]) + rotate([0,90,0]) + cylinder(r = axlerad, h = 1 + axleclearlen + 3 + 2); + mirror([1,0,0]) rotate([0,90,0]) + cylinder(r = washerrad, h = 3); +if(0) + intersection(){ + mirror([1,0,0]) rotate([0,90,0]) + cylinder(r = towercliph - shift, + h = pillarswidth/2 + axlehorizoffset); + translate([-50, -joinbelowallow, -50]) + cube([100, joinbelowallow+50, 100]); + } + } + rotate([90,0,0]) + translate([axleclearlen + axlepinrad/2, 0, -25]) + cylinder(r=axlepinrad, h=50); + } } translate([-50,-50,0]) cube([100,100,100]); } } +module AxleWasher(){ ////toplevel + difference(){ + cylinder(h=washerthick, r=washerrad); + translate([0,0,-1]) cylinder(h=washerthick+2, r=hubaxlerad+slop); + } +} + //ArmEnd(); //FilamentCup(); //CupSecuringClip(); //Hub(); //ArmExtender(); -Axle(); +//Axle(); +//AxleWasher(); +//AxlePin();