mirror of
https://github.com/revarbat/snappy-reprap.git
synced 2025-10-30 07:10:07 -07:00
131 lines
3.4 KiB
OpenSCAD
131 lines
3.4 KiB
OpenSCAD
include <config.scad>
|
|
use <GDMUtils.scad>
|
|
use <joiners.scad>
|
|
|
|
|
|
module rail_y_motor_segment()
|
|
{
|
|
joiner_length = 10;
|
|
side_joiner_len = 10;
|
|
|
|
color("SpringGreen")
|
|
prerender(convexity=20)
|
|
union() {
|
|
difference() {
|
|
union() {
|
|
// Bottom.
|
|
up(rail_thick/2) {
|
|
difference() {
|
|
union() {
|
|
yrot(90)
|
|
sparse_strut(h=rail_width, l=motor_rail_length, thick=rail_thick, maxang=45, strut=10, max_bridge=500);
|
|
cube(size=[motor_mount_spacing+joiner_width, 45+20, rail_thick], center=true);
|
|
}
|
|
cube(size=[motor_mount_spacing-joiner_width, 45, rail_thick+1], center=true);
|
|
}
|
|
}
|
|
|
|
// Walls.
|
|
zring(r=0,n=2) {
|
|
up((rail_height+3)/2) {
|
|
right((rail_spacing+joiner_width)/2) {
|
|
if (wall_style == "crossbeams")
|
|
sparse_strut(h=rail_height+3, l=motor_rail_length-2*joiner_length, thick=joiner_width, strut=5);
|
|
if (wall_style == "thinwall")
|
|
thinning_wall(h=rail_height+3, l=motor_rail_length-2*joiner_length, thick=joiner_width, strut=5, bracing=false);
|
|
if (wall_style == "corrugated")
|
|
corrugated_wall(h=rail_height+3, l=motor_rail_length-2*joiner_length, thick=joiner_width, strut=5);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Rail backing.
|
|
xspread(rail_spacing+joiner_width)
|
|
up(rail_height+groove_height/2)
|
|
chamfer(size=[joiner_width, motor_rail_length, groove_height], chamfer=1, edges=[[1,1,0,0], [1,1,0,0], [0,0,0,0]])
|
|
cube(size=[joiner_width, motor_rail_length, groove_height], center=true);
|
|
|
|
// Motor mount joiners.
|
|
up(rail_height-5-20) {
|
|
xrot(90) joiner_pair(spacing=motor_mount_spacing, h=rail_height, w=joiner_width, l=rail_height-5-20, a=joiner_angle);
|
|
}
|
|
}
|
|
|
|
// Rail grooves.
|
|
up(rail_height+groove_height/2) {
|
|
xflip_copy() {
|
|
left((rail_width-joiner_width)/2) {
|
|
xflip_copy() {
|
|
right(joiner_width/2) {
|
|
// main groove
|
|
scale([tan(groove_angle),1,1]) yrot(45) {
|
|
cube(size=[groove_height*sqrt(2)/2,motor_rail_length+1,groove_height*sqrt(2)/2], center=true);
|
|
}
|
|
|
|
// chamfers
|
|
mirror_copy([0,1,0]) {
|
|
back(motor_rail_length/2) {
|
|
hull() {
|
|
yspread(2) {
|
|
zrot(45) scale([tan(groove_angle)*sin(45),1,1]) yrot(45) {
|
|
cube(size=[groove_height*sqrt(2)/2,10,groove_height*sqrt(2)/2], center=true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Wiring access holes.
|
|
up(rail_height/4) {
|
|
xspread(rail_width/3, n=3) {
|
|
yspread(motor_rail_length-20) {
|
|
cube(size=[16, 11, 10], center=true);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Clear space for joiners.
|
|
up(rail_height/2) {
|
|
joiner_quad_clear(xspacing=rail_spacing+joiner_width, yspacing=motor_rail_length, h=rail_height, w=joiner_width, clearance=5, a=joiner_angle);
|
|
}
|
|
|
|
// Shrinkage stress relief
|
|
up(rail_thick/2) {
|
|
yspread(16, n=5) {
|
|
cube(size=[rail_width+1, 1, rail_thick-2], center=true);
|
|
}
|
|
xspread(15, n=7) {
|
|
yspread(motor_rail_length-10) {
|
|
cube(size=[1, 60, rail_thick-2], center=true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Snap-tab joiners.
|
|
up(rail_height/2) {
|
|
joiner_quad(xspacing=rail_spacing+joiner_width, yspacing=motor_rail_length, h=rail_height, w=joiner_width, l=13, a=joiner_angle);
|
|
}
|
|
}
|
|
}
|
|
//!rail_y_motor_segment();
|
|
|
|
|
|
|
|
module rail_y_motor_segment_parts() { // make me
|
|
zrot(90) rail_y_motor_segment();
|
|
}
|
|
|
|
|
|
rail_y_motor_segment_parts();
|
|
|
|
|
|
|
|
// vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap
|
|
|