vakuumnippel.scad 703 B

12345678910111213141516171819202122232425
  1. use <threads.scad>
  2. $fn=36;
  3. D_Schlauch = 6;
  4. difference(){
  5. union() {
  6. translate([0,0,0]) metric_thread (diameter=11.0, pitch=1, length=12, test=false);
  7. translate([0,0,12]) union() {
  8. D=20; H=6;
  9. cylinder(d=D, h=H);
  10. for(i=[0:360/24:359]) rotate([0,0,i]) translate([D/2,0,0]) cylinder(h=H, $fn=4, d=1);
  11. //translate([D/2,0,H/2]) scale([0.5,1,1.9]) sphere(d=H/2);
  12. }
  13. translate([0,0,18]) union() {
  14. H=4;
  15. cylinder(d1=D_Schlauch*1.5, d2=D_Schlauch, h=H);
  16. for(i=[1:1:4]) {
  17. translate([0,0,H*i]) cylinder(d1=D_Schlauch+0.5, d2=D_Schlauch, h=H);
  18. }
  19. }
  20. }
  21. translate([0,0,-5]) cylinder(d=4, h=50);
  22. translate([0,0,-0.01]) cylinder($fn=6, r=4/sqrt(3), h=14);
  23. }