Gartenhahn-Perlator.2.scad 853 B

1234567891011121314151617181920212223242526272829303132333435
  1. use <threads.scad>
  2. $fn=180;
  3. debug=false;
  4. // Zollgewinde 3/4"
  5. // Außen 26,441
  6. // Innen 24,117
  7. // TPI 14
  8. // Steigung 1,814
  9. ZOLL=25.4;
  10. intersection() {
  11. difference() {
  12. // Aussenform
  13. union() {
  14. cylinder(d=30, h=13); // 3/4" IG
  15. translate([0,0,13]) cylinder(d1=30, d2=27, h=5.5);
  16. for(i=[0:360/30:359]) rotate([0,0,i]) translate([15,0,0]) union() {
  17. cylinder(d=2, h=12);
  18. translate([0,0,12]) sphere(d=2);
  19. }
  20. }
  21. // Innenbohrung
  22. union() {
  23. metric_thread (diameter=26.44, pitch=ZOLL/14, length=7, internal=true, test=debug); // 3/4" IG
  24. translate([0,0,7]) cylinder(d=26.44, h=4); // Innenbohrung f. Dichtung
  25. translate([0,0,14]) metric_thread (diameter=24, pitch=1, length=5, internal=true, test=debug); // Gewinde für Perlator
  26. cylinder(d=16.5, h=30);
  27. }
  28. }
  29. //cube(100);
  30. }