Modified Idler

Extruder idler modified for easier printing
This commit is contained in:
michalprusa 2016-05-05 14:44:58 +02:00
parent 3febbccce6
commit 5734424f4c
2 changed files with 11554 additions and 14087 deletions

View File

@ -1,63 +1,78 @@
module part_body(){ module part_body(){
//bottom round edge //bottom round edge
translate([ -7, 4, 6 ]) rotate([0,90,0]) cylinder(r=4, h=21.5, $fn=200 ); translate([ -7, 4, 6 ]) rotate([0,90,0]) cylinder(r=4, h=21.5, $fn=200 );
translate([ -7, 4, 4 ]) rotate([0,90,0]) cylinder(r=4, h=21.5, $fn=200 ); translate([ -7, 4, 4 ]) rotate([0,90,0]) cylinder(r=4, h=21.5, $fn=200 );
translate([ 11, 0, 4]) cube([3.5,8,2]);
translate([ 11, 8, 4 ]) cube([3.5,4,6]);
// body
translate([ -7, 4, 0 ]) cube([18,10,10]); difference()
translate([ -7, 0, 4 ]) cube([18,32,2]); {
translate([ -5, 4, 3 ]) cube([10,48,7]); translate([ -7, 0, 4 ]) cube([21.5,5,6]);
translate([ -11, 11, 0 ]) cube([22,28,10]); translate([ -8, -1, 8 ]) rotate([45,0,0]) cube([25,5,6]);
translate([ -9, 11, 0 ]) cube([18,30,10]); }
// upper round edges translate([ -7, 8, 4 ]) rotate([0,90,0]) cylinder(r=4, h=21.5, $fn=200 );
translate([ 9, 39, 0 ]) cylinder(r=2, h=10, $fn=25);
translate([ -9, 39, 0 ]) cylinder(r=2, h=10, $fn=25); translate([ 11, 0, 4]) cube([3.5,12,2]);
// upper round piece translate([ 11, 4, 8]) cube([3.5,4,2]);
translate([ 0, 52, 6.5 ]) rotate([0,0,0]) cylinder(r=5, h=7, $fn=200, center=true); translate([ 11, 4, 0]) cube([3.5,4,2]);
}
module cut_away(){ // body
translate([ -7, 4, 0 ]) cube([18,10,10]);
// axis translate([ -7, 0, 4 ]) cube([18,32,2]);
translate([ 0, 4, 6 ]) rotate([0,90,0]) cylinder(r=1.7, h=30, $fn=200, center=true); translate([ -5, 4, 3 ]) cube([10,48,7]);
translate([ -11, 11, 0 ]) cube([22,28,10]);
// bolt holes translate([ -9, 11, 0 ]) cube([18,30,10]);
translate([ 7.5, 35.8, -1 ]) cylinder(r=1.75, h=12, $fn=20);
translate([ 7.5, 36.5, -1 ]) cylinder(r=1.75, h=12, $fn=20); // upper round edges
translate([ 7.5, 37.2, -1 ]) cylinder(r=1.75, h=12, $fn=20); translate([ 9, 39, 0 ]) cylinder(r=2, h=10, $fn=25);
translate([ -9, 39, 0 ]) cylinder(r=2, h=10, $fn=25);
translate([ -7.5, 35.8, -1 ])cylinder(r=1.75, h=12, $fn=20);
translate([ -7.5, 36.5, -1 ])cylinder(r=1.75, h=12, $fn=20); // upper round piece
translate([ -7.5, 37.2, -1 ])cylinder(r=1.75, h=12, $fn=20); translate([ 0, 52, 6.5 ]) rotate([0,0,0]) cylinder(r=5, h=7, $fn=200, center=true);
}
translate([0,52,0]) sphere(r=5, $fn=20);
module cut_away(){
//bearing hole
translate([ 0, 20, 3 ]){ // axis
rotate([0,90,0]){ translate([ 0, 4, 6 ]) rotate([0,90,0]) cylinder(r=1.7, h=30, $fn=200, center=true);
cylinder(r=8.5, h=7.5, $fn=200, center=true);
%cylinder(r=8, h=7.5, $fn=200, center=true); // bolt holes
cylinder(r=2.5, h=17, $fn=200, center=true); translate([ 7.5, 35.8, -1 ]) cylinder(r=1.75, h=12, $fn=20);
} translate([ 7.5, 36.5, -1 ]) cylinder(r=1.75, h=12, $fn=20);
translate([0,0,-5]) cube([17,5,10], center=true); translate([ 7.5, 37.2, -1 ]) cylinder(r=1.75, h=12, $fn=20);
translate([0,0,-5]) cube([7.5,17,10], center=true);
} translate([ -7.5, 35.8, -1 ])cylinder(r=1.75, h=12, $fn=20);
} translate([ -7.5, 36.5, -1 ])cylinder(r=1.75, h=12, $fn=20);
translate([ -7.5, 37.2, -1 ])cylinder(r=1.75, h=12, $fn=20);
module idler(){
translate([0,52,0]) sphere(r=5, $fn=20);
// final part
translate([0,0,10]) mirror([0,0,1]) //bearing hole
difference(){ translate([ 0, 20, 3 ]){
part_body(); rotate([0,90,0]){
cut_away(); cylinder(r=8.5, h=7.5, $fn=200, center=true);
} %cylinder(r=8, h=7.5, $fn=200, center=true);
} cylinder(r=2.5, h=17, $fn=200, center=true);
}
translate([0,0,-5]) cube([17,5,10], center=true);
translate([0,0,-5]) cube([7.5,17,10], center=true);
}
}
module idler(){
// final part
translate([0,0,10]) mirror([0,0,1])
difference(){
part_body();
cut_away();
}
}
idler(); idler();

File diff suppressed because it is too large Load Diff