Raccords tuyaux :
le radiateur reçoit des tuyaux de diamètre 8mm, tandis que les calandres reçoivent des tuyaux de 6 mm (approximativement).
$fn=40;
dpe=8.8;
dpi=7.6;
dge=10.9;
dgi=9.35;
hp=6.5;
hg=6.5;
e=2;
module petit_cote() {
cylinder(h=hp, d1=dpi,d2=dpe);
translate([0,0,hp]) cylinder(h=hp, d1=dpi,d2=dpe);
translate([0,0,2*hp]) cylinder(h=hp, d1=dpi,d2=dpe);
}
module grand_cote() {
cylinder(h=hg, d1=dgi,d2=dge);
translate([0,0,hg]) cylinder(h=hg, d1=dgi,d2=dge);
translate([0,0,2*hg]) cylinder(h=hg, d1=dgi,d2=dge);
}
module adaptateur() {
difference() {{{ :wiki:projets:chambre_a_brouillard_3:adaptateur_tuyau.stl.zip |}}
union() {
translate([0,0,-3*hp]) petit_cote();
rotate([180,0,0]) translate([0,0,-3*hg]) grand_cote();
translate([0,0,0]) cylinder(d=dpe, h=hg,center=true);
}
cylinder(d=dpe-e, h=5*hg+5*hp,center=true);
}
}
adaptateur();