Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. include <MCAD/involute_gears.scad>
  2.  
  3. //<gregfrostoncouch> but I think you need to make the teeth taller and the roots shallower if
  4. //<gregfrostoncouch> you want to suptract it and have it mesh properly
  5.  
  6. module gearsbyteethanddistance(t1=14,t2=51,t3=79, d=90)
  7. {
  8. cp = 360*d/(t1+t2);
  9. translate([70.61+19.38,0,10]) gear(twist = 300/t1, number_of_teeth=t1, circular_pitch=cp);
  10. gear(twist = -300/t2, number_of_teeth=t2, circular_pitch=cp);
  11. difference()
  12. {
  13. cylinder(r=d+10+19.38, h=5);
  14. gear(twist = 300/t3, number_of_teeth = t3, circular_pitch = (360*(d+19.38)/t3));
  15. }
  16. }
  17.  
  18. gearsbyteethanddistance();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement