Welcome! Log In Create A New Profile

Advanced

Searching a STL for RAMPS module on I3 acrylic

Posted by sebi9 
Searching a STL for RAMPS module on I3 acrylic
October 18, 2015 03:49AM
Hello!

I'm searching this stl (see photo, the red one).

This print will replace fixation of 45° frame above prusa i3 acrylic.
I couldn't find it on usual stl websites.

Do you know where to find it?


Thank you all!

edit : found it this one, but mine is a 15 or 16 mm frame (http://www.thingiverse.com/thing:485438/#files)

Edited 2 time(s). Last edit at 10/18/2015 05:36AM by sebi9.
Attachments:
open | download - 1 12165915_10153634160474356_1091204475_n.jpg (61.2 KB)
open | download - 2 12169812_10153634160169356_882160978_o.jpg (191.8 KB)
Re: Searching a STL for RAMPS module on I3 acrylic
October 27, 2015 10:20AM
I don't know where to find the model, but it looks to be extremely easy to work up in openscad. Have you tried?
Re: Searching a STL for RAMPS module on I3 acrylic
October 27, 2015 11:49AM
Here is a quick work-up. I have no idea your dimensions, but I tried to parameterize it so you can change it easily. For a perfect match, you might want to print 2

//change the next 6 lines to match your dimensions
dim=20;           //the width/height of the extrusion
wall=4;           //how thick you want the walls to be
height = 50;      //the length of the "sleeve"
hookwall = 6;     //how thick is the wall aroung the "hook" portion
hookdepth = 6;    //how wide is the aluminum over which the hook is hung
hookheight = 12;  //how long is the portion of the hook that overhangs the aluminum

//don't change below this point
dim2 = (dim/2+wall)*sin(45);

rotate([0, 90, 0])
difference() {
	union() {
		rotate([-45, 0, 0])
			translate([0, 0, height/2])
				cube([dim+wall*2, dim+wall*2, height], true);
		
		cube([dim+wall*2, dim2*2, dim2*4], true);
		translate([0, -dim2-(hookdepth+hookwall)/2, dim2])
			cube([dim+wall*2, hookdepth+hookwall, hookwall], true);
		translate([0, -dim2-hookwall/2-hookdepth, dim2+hookwall/2-hookdepth/2-hookheight/2])
			cube([dim+wall*2, hookwall, hookdepth+hookheight], true);
		
	}
	rotate([-45, 0, 0])
		translate([0, 0, height/2+wall])
			cube([dim, dim, height], true);

}

Re: Searching a STL for RAMPS module on I3 acrylic
November 15, 2015 12:10AM
I replaced my Y carriage feet with these (https://www.thingiverse.com/thing:952791). They completely eliminated the need for struts.
Sorry, only registered users may post in this forum.

Click here to login