Skip to content

Commit

Permalink
Adjusted vertical carriage for use with http://github.com/jcrocholl/r…
Browse files Browse the repository at this point in the history
…ecirculating 3D printed rollers.
  • Loading branch information
jcrocholl committed May 25, 2014
1 parent fb94b07 commit 74e0860
Show file tree
Hide file tree
Showing 2 changed files with 10,282 additions and 0 deletions.
88 changes: 88 additions & 0 deletions carriage_recirculating.scad
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
include <configuration.scad>;

separation = 40;
thickness = 6;

horn_thickness = 13;
horn_x = 8;

belt_width = 5;
belt_x = 5.6;
belt_z = 7;

plate_thickness = 7;
plate_y = -9;
plate_w = 29;
plate_h = 25;
outside_radius = 5;

module plate(h) {
minkowski() {
cube([plate_w, plate_h, 2], center=true);
cylinder(r1=outside_radius, r2=1, h=6, $fn=36);
}
}

module carriage() {
// Timing belt (up and down).
translate([-belt_x, 0, belt_z + belt_width/2]) %
cube([1.7, 100, belt_width], center=true);
translate([belt_x, 0, belt_z + belt_width/2]) %
cube([1.7, 100, belt_width], center=true);
difference() {
union() {
translate([0, plate_y, -3])
plate(plate_thickness);
// Main body.
translate([0, 4, thickness/2-2])
cube([27, 40, thickness+4], center=true);
// Ball joint mount horns.
for (x = [-1, 1]) {
scale([x, 1, 1]) intersection() {
translate([0, 15, horn_thickness/2-2])
cube([separation, 18, horn_thickness+4], center=true);
translate([horn_x, 16, horn_thickness/2]) rotate([0, 90, 0])
cylinder(r1=14, r2=2.5, h=separation/2-horn_x);
}
}
// Belt clamps.
difference() {
union() {
translate([6.5, -2.5, horn_thickness/2+1])
cube([14, 7, horn_thickness-2], center=true);
translate([10.75, 2.5, horn_thickness/2+1])
cube([5.5, 16, horn_thickness-2], center=true);
}
// Avoid touching diagonal push rods (carbon tube).
translate([20, -10, 12.5]) rotate([35, 35, 30])
cube([40, 40, 20], center=true);
}
for (y = [-12, 7]) {
translate([1.25, y, horn_thickness/2+1])
cube([7, 8, horn_thickness-2], center=true);
}
}
// Screws for linear slider.
for (x = [-plate_w/2, plate_w/2]) {
for (y = [-plate_h/2, plate_h/2]) {
translate([x, y+plate_y, 0]) #
cylinder(r=m3_wide_radius, h=30, center=true, $fn=12);
translate([x, y+plate_y, 0.5]) #
cylinder(r=4, h=30, $fn=24);
}
}
// Screws for ball joints.
translate([0, 16, horn_thickness/2]) rotate([0, 90, 0]) #
cylinder(r=m3_wide_radius, h=60, center=true, $fn=12);
// Lock nuts for ball joints.
for (x = [-1, 1]) {
scale([x, 1, 1]) intersection() {
translate([horn_x, 16, horn_thickness/2]) rotate([90, 0, -90])
cylinder(r1=m3_nut_radius, r2=m3_nut_radius+0.5, h=8,
center=true, $fn=6);
}
}
}
}

carriage();
Loading

0 comments on commit 74e0860

Please sign in to comment.