Loading

90 degree angle rod connector

by Erik, published

90 degree angle rod connector by Erik Dec 7, 2009

Description

This is a pretty generic part that allows you to connects two shafts/rods perpendicular to each other! The 8-8mm version is used in the RepRap for the diagonal tie brackets, to connect the 8mm threaded rod to the 8mm diameter studs.

You can specify the diameters of each of the holes.

In version two you have more control over the sizes of the exterior of the shafts. One of the shafts needs more material, because in the Z-direction the part will be weaker. Shaft 2 can be very thin, configure this with a higher negative value of "shaft_2_exterior_difference".

Note: It requires my teardrop.scad module to be present in the same directory, but you can uncomment my module at the bottom of the script.

Tip for RepRap Darwin users: I designed this part to have thinner rods as diagonals. This reduces the weight of your machine. M3 rods are more than strong enough! This will save the weight difference for each of the 10 diagonal rods! You can probably save about 1 kg.

Recent Comments

view all

Yes, it's amazing! There should be an import function for the scad files on Thingiverse that automatically syncs the source, with version control and local caching of course. Otherwise everything will use local/multiple versions of everything. An online CAD solution would also solve this (OpenSCAD interface?).

With SCAD, every new part uploaded to thingiverse can be unioned onto new ones. That's a big deal.

Very cool, thanks! I love to see parameterised things here, the possibilities grow exponentially with each new part!

Makes

Liked By

view all
wulfCard1024x768

License

GNU - GPL
90 degree angle rod connector by Erik is licensed under the GNU - GPL license.

Give a Shout Out

If you print this Thing and display it in public proudly give attribution by printing and displaying this tag. Print Thing Tag

Instructions

// //////////////////////////////
// USER PARAMETERS
// //////////////////////////////

// The diameter of the two shafts
shaft1_dia = 8;
shaft2_dia = 8;

// How much material should be around the holes:
outset_h = 7.0; // minimum mm of material around holes, horizontal
outset_v = 5.0; // vertical outset
roombetween = 1; //mm between holes

// you can reduce the exterior for shaft 2 (the vertical one) by using a negative number here. This is advised to save material, because in the XY-plane the material is very strong compared to the Z-direction
shaft_2_exterior_difference=-4.5;

// An overhang that your machine prints well without supports
max_overhang = 30; // rule of thumb: 45
chamfer=5.5;

minimize_material = true; // gives the top section a fancy shape, that also reduces the amount of material needed!

Comments

You must be logged in to post a comment.

MaskedRetriever on Dec 7, 2009 said:

With SCAD, every new part uploaded to thingiverse can be unioned onto new ones. That's a big deal.

Erik on Dec 8, 2009 said:

Yes, it's amazing! There should be an import function for the scad files on Thingiverse that automatically syncs the source, with version control and local caching of course. Otherwise everything will use local/multiple versions of everything. An online CAD solution would also solve this (OpenSCAD interface?).

cathalgarvey on Dec 7, 2009 said:

Very cool, thanks! I love to see parameterised things here, the possibilities grow exponentially with each new part!

Top