zyklon-ht125-inlet.scad 749 B

123456789101112131415161718192021
  1. $fn=120;
  2. use <./ht-rohr.scad>;
  3. intersection() {
  4. difference() {
  5. cylinder(d=135, h=90);
  6. cylinder(d=125, h=90); // DN125!!
  7. translate([40,0,40]) rotate([80,0,17.5]) cylinder(d=50, h=80);
  8. for(r=[-85:(85+35)/3:35]) rotate([0,0,r]) union() {
  9. translate([0,0,10]) rotate([0,90,0]) cylinder(d=6, h=100);
  10. translate([0,0,80]) rotate([0,90,0]) cylinder(d=6, h=100);
  11. }
  12. translate([0,0,45]) rotate([0,90,-85]) cylinder(d=6, h=100);
  13. translate([0,0,45]) rotate([0,90,35]) cylinder(d=6, h=100);
  14. }
  15. for(r=[-90:360/$fn:45]) rotate([0,0,r]) hull() {
  16. rotate([0,0,-360/$fn]) cube([100,0.001,100]);
  17. rotate([0,0,+360/$fn]) cube([100,0.001,100]);
  18. }
  19. }
  20. translate([40,0,40]) rotate([80,0,17.5]) HT_Pipe(DN=50, length=100);