Ceci est une ancienne révision du document !
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(hp, dpi,dpe);
translate([0,0,hp]) cylinder(hp, dpi,dpe);
translate([0,0,2*hp]) cylinder(hp, dpi,dpe);
}
module grand_cote() {
cylinder(hg, dgi,dge);
translate([0,0,hg]) cylinder(hg, dgi,dge);
translate([0,0,2*hg]) cylinder(hg, dgi,dge);
}
module adaptateur() {
difference() {
union() {
translate([0,0,-4*hp]) petit_cote();
rotate([180,0,0]) translate([0,0,-4*hg]) grand_cote();
translate([0,0,0]) cylinder(d=2*dpe, h=hg+hp,center=true);
}
cylinder(d=2*dpe-2*e, h=5*hg+5*hp,center=true);
}
}
adaptateur();