verzameling oude spullen
This commit is contained in:
commit
7ed9544283
119 changed files with 1288059 additions and 0 deletions
202
beplating/lasercuttermount/ISOThread_20120823.scad
Normal file
202
beplating/lasercuttermount/ISOThread_20120823.scad
Normal file
|
@ -0,0 +1,202 @@
|
|||
// ISO Metric Thread Implementation
|
||||
// Trevor Moseley
|
||||
// 23/08/2012
|
||||
|
||||
// For thread dimensions see
|
||||
// http://en.wikipedia.org/wiki/File:ISO_and_UTS_Thread_Dimensions.svg
|
||||
|
||||
//hex_nut(6);
|
||||
//hex_nut(8);
|
||||
//hex_nut(10);
|
||||
|
||||
//hex_bolt(6,12);
|
||||
//hex_bolt(8,16);
|
||||
//hex_bolt(10,16);
|
||||
//hex_bolt(12,24);
|
||||
|
||||
//thread_out(8,16);
|
||||
|
||||
defQ = 32;
|
||||
|
||||
// function for thread quality
|
||||
function get_thr_qual(dia) = lookup(dia, [
|
||||
[5,10],[6,12],[7,14],[8,16],[10,20],[12,12],[14,28],[16,32],[18,36],[20,40],[22,44],[24,48],[27,54],[30,60],[33,66],[36,72],[39,78],[42,84],[45,90],[48,96],[52,104],[56,112],[60,120],[64,128],[78,156]]);
|
||||
|
||||
// function for shaft quality
|
||||
function get_sh_qual(dia) = lookup(dia, [
|
||||
[5,10],[6,12],[7,14],[8,16],[10,20],[12,24],[14,28],[16,32],[18,36],[20,40],[22,44],[24,48],[27,54],[30,60],[33,66],[36,72],[39,78],[42,84],[45,90],[48,96],[52,104],[56,112],[60,120],[64,128],[78,156]]);
|
||||
|
||||
module hex_nut(dia)
|
||||
{
|
||||
$fn = get_sh_qual(dia);
|
||||
thr = get_thr_qual(dia);
|
||||
hi = hex_nut_hi(dia);
|
||||
difference()
|
||||
{
|
||||
cylinder(r = hex_nut_dia(dia)/2,h = hi, $fn=6);
|
||||
translate([0,0,-0.1]) cylinder(r = dia/2, h =hi + 0.2);
|
||||
}
|
||||
translate([0,0,0.1]) thread_in(dia,hi-0.2,thr);
|
||||
}
|
||||
|
||||
module hex_bolt(dia,hi)
|
||||
{
|
||||
$fn = get_sh_qual(dia);
|
||||
thr = get_thr_qual(dia);
|
||||
hhi = hex_bolt_hi(dia);
|
||||
cylinder(r = hex_bolt_dia(dia)/2,h = hhi, $fn=6);
|
||||
translate([0,0,hhi-0.1]) thread_out(dia,hi+0.1,thr);
|
||||
}
|
||||
|
||||
// function for thread pitch
|
||||
function get_coarse_pitch(dia) = lookup(dia, [
|
||||
[1,0.25],[1.2,0.25],[1.4,0.3],[1.6,0.35],[1.8,0.35],[2,0.4],[2.5,0.45],[3,0.5],[3.5,0.6],[4,0.7],[5,0.8],[6,1],[7,1],[8,1.25],[10,1.5],[12,1.75],[14,2],[16,2],[18,2.5],[20,2.5],[22,2.5],[24,3],[27,3],[30,3.5],[33,3.5],[36,4],[39,4],[42,4.5],[45,4.5],[48,5],[52,5],[56,5.5],[60,5.5],[64,6],[78,5]]);
|
||||
|
||||
// function for hex nut diameter from thread size
|
||||
function hex_nut_dia(dia) = lookup(dia, [
|
||||
[3,6.4],[4,8.1],[5,9.2],[6,11.5],[8,16.0],[10,19.6],[12,22.1],[16,27.7],[20,34.6],[24,41.6],[30,53.1],[36,63.5]]);
|
||||
// function for hex nut height from thread size
|
||||
function hex_nut_hi(dia) = lookup(dia, [
|
||||
[3,2.4],[4,3.2],[5,4],[6,3],[8,5],[10,5],[12,10],[16,13],[20,16],[24,19],[30,24],[36,29]]);
|
||||
|
||||
// function for hex bolt head diameter from thread size
|
||||
function hex_bolt_dia(dia) = lookup(dia, [
|
||||
[3,6.4],[4,8.1],[5,9.2],[6,11.5],[8,14.0],[10,16],[12,22.1],[16,27.7],[20,34.6],[24,41.6],[30,53.1],[36,63.5]]);
|
||||
// function for hex bolt head height from thread size
|
||||
function hex_bolt_hi(dia) = lookup(dia, [
|
||||
[3,2.4],[4,3.2],[5,4],[6,3.5],[8,4.5],[10,5],[12,10],[16,13],[20,16],[24,19],[30,24],[36,29]]);
|
||||
|
||||
module thread_out(dia,hi,thr=defQ)
|
||||
{
|
||||
p = get_coarse_pitch(dia);
|
||||
h = (cos(30)*p)/8;
|
||||
Rmin = (dia/2) - (5*h); // as wiki Dmin
|
||||
s = 360/thr;
|
||||
t = (hi-p)/p; // number of turns
|
||||
n = t*thr; // number of segments
|
||||
//echo(str("dia=",dia," hi=",hi," p=",p," h=",h," Rmin=",Rmin," s=",s));
|
||||
cylinder(r = Rmin, h = hi);
|
||||
for(sg=[0:n])
|
||||
th_out_pt(Rmin-0.1,p,s,sg,thr,h,(hi-p)/n);
|
||||
}
|
||||
|
||||
module th_out_pt(rt,p,s,sg,thr,h,sh)
|
||||
// rt = radius of thread (nearest centre)
|
||||
// p = pitch
|
||||
// s = segment length (degrees)
|
||||
// sg = segment number
|
||||
// thr = segments in circumference
|
||||
// h = ISO h of thread / 8
|
||||
// sh = segment height (z)
|
||||
{
|
||||
as = (sg % thr) * s; // angle to start of seg
|
||||
ae = as + s - (s/100); // angle to end of seg (with overlap)
|
||||
z = sh*sg;
|
||||
|
||||
cas=cos(as);
|
||||
sas=sin(as);
|
||||
cae=cos(ae);
|
||||
sae=sin(ae);
|
||||
rtp=rt+(5*h);
|
||||
|
||||
casrt=cas*rt;
|
||||
sasrt=sas*rt;
|
||||
caert=cae*rt;
|
||||
saert=sae*rt;
|
||||
|
||||
// 1,4
|
||||
// |\
|
||||
// | \ 2,5
|
||||
// | /
|
||||
// |/
|
||||
// 0,3
|
||||
// view from front (x & z) extruded in y by sg
|
||||
//
|
||||
//echo(str("as=",as,", ae=",ae," z=",z));
|
||||
polyhedron(
|
||||
points = [
|
||||
[casrt,sasrt,z], // 0
|
||||
[casrt,sasrt,z+(3/4*p)], // 1
|
||||
[cas*rtp,sas*rtp,z+(3/8*p)], // 2
|
||||
[caert,saert,z+sh], // 3
|
||||
[caert,saert,z+(3/4*p)+sh], // 4
|
||||
[cae*rtp,sae*rtp,z+sh+(3/8*p)]], // 5
|
||||
triangles = [
|
||||
[0,1,2], // near face
|
||||
[3,5,4], // far face
|
||||
[0,3,4],[0,4,1], // left face
|
||||
[0,5,3],[0,2,5], // bottom face
|
||||
[1,4,5],[1,5,2]]); // top face
|
||||
}
|
||||
|
||||
module thread_in(dia,hi,thr=defQ)
|
||||
{
|
||||
p = get_coarse_pitch(dia);
|
||||
h = (cos(30)*p)/8;
|
||||
Rmin = (dia/2) - (5*h); // as wiki Dmin
|
||||
s = 360/thr;
|
||||
t = (hi-p)/p; // number of turns
|
||||
n = t*thr; // number of segments
|
||||
//echo(str("dia=",dia," hi=",hi," p=",p," h=",h," Rmin=",Rmin," s=",s));
|
||||
difference()
|
||||
{
|
||||
cylinder(r = (dia/2)+0.5,h = hi);
|
||||
translate([0,0,-1]) cylinder(r = (dia/2)+0.1, h = hi+2);
|
||||
}
|
||||
for(sg=[0:n])
|
||||
th_in_pt(Rmin+0.2,p,s,sg,thr,h,(hi-p)/n);
|
||||
}
|
||||
|
||||
module th_in_pt(rt,p,s,sg,thr,h,sh)
|
||||
// rt = radius of thread (nearest centre)
|
||||
// p = pitch
|
||||
// s = segment length (degrees)
|
||||
// sg = segment number
|
||||
// thr = segments in circumference
|
||||
// h = ISO h of thread / 8
|
||||
// sh = segment height (z)
|
||||
{
|
||||
// as = 360 - (((sg % thr) * s) - 180); // angle to start of seg
|
||||
// ae = as - s + (s/100); // angle to end of seg (with overlap)
|
||||
as = ((sg % thr) * s - 180); // angle to start of seg
|
||||
ae = as + s -(s/100); // angle to end of seg (with overlap)
|
||||
z = sh*sg;
|
||||
|
||||
cas=cos(as);
|
||||
sas=sin(as);
|
||||
cae=cos(ae);
|
||||
sae=sin(ae);
|
||||
rtp=rt+(5*h);
|
||||
|
||||
casrt=cas*rt;
|
||||
casrtp=cas*rtp;
|
||||
sasrt=sas*rt;
|
||||
sasrtp=sas*rtp;
|
||||
caert=cae*rt;
|
||||
caertp=cae*rtp;
|
||||
saert=sae*rt;
|
||||
saertp=sae*rtp;
|
||||
|
||||
// 2,5
|
||||
// /|
|
||||
// 1,4 / |
|
||||
// \ |
|
||||
// \|
|
||||
// 0,3
|
||||
// view from front (x & z) extruded in y by sg
|
||||
//
|
||||
polyhedron(
|
||||
points = [
|
||||
[casrtp,sasrtp,z], //0
|
||||
[casrt,sasrt,z+(3/8*p)], //1
|
||||
[casrtp,sasrtp,z+(3/4*p)], //2
|
||||
[caertp,saertp,z+sh], //3
|
||||
[caert,saert,z+(3/8*p)+sh], //4
|
||||
[caertp,saertp,z+(3/4*p)+sh]], //5
|
||||
triangles = [
|
||||
[0,1,2], // near face
|
||||
[3,5,4], // far face
|
||||
[0,3,4],[0,4,1], // left face
|
||||
[0,5,3],[0,2,5], // bottom face
|
||||
[1,4,5],[1,5,2]]); // top face
|
||||
}
|
202
beplating/lasercuttermount/ISOThread_20120823.scad~
Normal file
202
beplating/lasercuttermount/ISOThread_20120823.scad~
Normal file
|
@ -0,0 +1,202 @@
|
|||
// ISO Metric Thread Implementation
|
||||
// Trevor Moseley
|
||||
// 23/08/2012
|
||||
|
||||
// For thread dimensions see
|
||||
// http://en.wikipedia.org/wiki/File:ISO_and_UTS_Thread_Dimensions.svg
|
||||
|
||||
//hex_nut(6);
|
||||
//hex_nut(8);
|
||||
//hex_nut(10);
|
||||
|
||||
hex_bolt(6,12);
|
||||
//hex_bolt(8,16);
|
||||
//hex_bolt(10,16);
|
||||
//hex_bolt(12,24);
|
||||
|
||||
//thread_out(8,16);
|
||||
|
||||
defQ = 32;
|
||||
|
||||
// function for thread quality
|
||||
function get_thr_qual(dia) = lookup(dia, [
|
||||
[5,10],[6,12],[7,14],[8,16],[10,20],[12,12],[14,28],[16,32],[18,36],[20,40],[22,44],[24,48],[27,54],[30,60],[33,66],[36,72],[39,78],[42,84],[45,90],[48,96],[52,104],[56,112],[60,120],[64,128],[78,156]]);
|
||||
|
||||
// function for shaft quality
|
||||
function get_sh_qual(dia) = lookup(dia, [
|
||||
[5,10],[6,12],[7,14],[8,16],[10,20],[12,24],[14,28],[16,32],[18,36],[20,40],[22,44],[24,48],[27,54],[30,60],[33,66],[36,72],[39,78],[42,84],[45,90],[48,96],[52,104],[56,112],[60,120],[64,128],[78,156]]);
|
||||
|
||||
module hex_nut(dia)
|
||||
{
|
||||
$fn = get_sh_qual(dia);
|
||||
thr = get_thr_qual(dia);
|
||||
hi = hex_nut_hi(dia);
|
||||
difference()
|
||||
{
|
||||
cylinder(r = hex_nut_dia(dia)/2,h = hi, $fn=6);
|
||||
translate([0,0,-0.1]) cylinder(r = dia/2, h =hi + 0.2);
|
||||
}
|
||||
translate([0,0,0.1]) thread_in(dia,hi-0.2,thr);
|
||||
}
|
||||
|
||||
module hex_bolt(dia,hi)
|
||||
{
|
||||
$fn = get_sh_qual(dia);
|
||||
thr = get_thr_qual(dia);
|
||||
hhi = hex_bolt_hi(dia);
|
||||
cylinder(r = hex_bolt_dia(dia)/2,h = hhi, $fn=6);
|
||||
translate([0,0,hhi-0.1]) thread_out(dia,hi+0.1,thr);
|
||||
}
|
||||
|
||||
// function for thread pitch
|
||||
function get_coarse_pitch(dia) = lookup(dia, [
|
||||
[1,0.25],[1.2,0.25],[1.4,0.3],[1.6,0.35],[1.8,0.35],[2,0.4],[2.5,0.45],[3,0.5],[3.5,0.6],[4,0.7],[5,0.8],[6,1],[7,1],[8,1.25],[10,1.5],[12,1.75],[14,2],[16,2],[18,2.5],[20,2.5],[22,2.5],[24,3],[27,3],[30,3.5],[33,3.5],[36,4],[39,4],[42,4.5],[45,4.5],[48,5],[52,5],[56,5.5],[60,5.5],[64,6],[78,5]]);
|
||||
|
||||
// function for hex nut diameter from thread size
|
||||
function hex_nut_dia(dia) = lookup(dia, [
|
||||
[3,6.4],[4,8.1],[5,9.2],[6,11.5],[8,16.0],[10,19.6],[12,22.1],[16,27.7],[20,34.6],[24,41.6],[30,53.1],[36,63.5]]);
|
||||
// function for hex nut height from thread size
|
||||
function hex_nut_hi(dia) = lookup(dia, [
|
||||
[3,2.4],[4,3.2],[5,4],[6,3],[8,5],[10,5],[12,10],[16,13],[20,16],[24,19],[30,24],[36,29]]);
|
||||
|
||||
// function for hex bolt head diameter from thread size
|
||||
function hex_bolt_dia(dia) = lookup(dia, [
|
||||
[3,6.4],[4,8.1],[5,9.2],[6,11.5],[8,14.0],[10,16],[12,22.1],[16,27.7],[20,34.6],[24,41.6],[30,53.1],[36,63.5]]);
|
||||
// function for hex bolt head height from thread size
|
||||
function hex_bolt_hi(dia) = lookup(dia, [
|
||||
[3,2.4],[4,3.2],[5,4],[6,3.5],[8,4.5],[10,5],[12,10],[16,13],[20,16],[24,19],[30,24],[36,29]]);
|
||||
|
||||
module thread_out(dia,hi,thr=defQ)
|
||||
{
|
||||
p = get_coarse_pitch(dia);
|
||||
h = (cos(30)*p)/8;
|
||||
Rmin = (dia/2) - (5*h); // as wiki Dmin
|
||||
s = 360/thr;
|
||||
t = (hi-p)/p; // number of turns
|
||||
n = t*thr; // number of segments
|
||||
//echo(str("dia=",dia," hi=",hi," p=",p," h=",h," Rmin=",Rmin," s=",s));
|
||||
cylinder(r = Rmin, h = hi);
|
||||
for(sg=[0:n])
|
||||
th_out_pt(Rmin-0.1,p,s,sg,thr,h,(hi-p)/n);
|
||||
}
|
||||
|
||||
module th_out_pt(rt,p,s,sg,thr,h,sh)
|
||||
// rt = radius of thread (nearest centre)
|
||||
// p = pitch
|
||||
// s = segment length (degrees)
|
||||
// sg = segment number
|
||||
// thr = segments in circumference
|
||||
// h = ISO h of thread / 8
|
||||
// sh = segment height (z)
|
||||
{
|
||||
as = (sg % thr) * s; // angle to start of seg
|
||||
ae = as + s - (s/100); // angle to end of seg (with overlap)
|
||||
z = sh*sg;
|
||||
|
||||
cas=cos(as);
|
||||
sas=sin(as);
|
||||
cae=cos(ae);
|
||||
sae=sin(ae);
|
||||
rtp=rt+(5*h);
|
||||
|
||||
casrt=cas*rt;
|
||||
sasrt=sas*rt;
|
||||
caert=cae*rt;
|
||||
saert=sae*rt;
|
||||
|
||||
// 1,4
|
||||
// |\
|
||||
// | \ 2,5
|
||||
// | /
|
||||
// |/
|
||||
// 0,3
|
||||
// view from front (x & z) extruded in y by sg
|
||||
//
|
||||
//echo(str("as=",as,", ae=",ae," z=",z));
|
||||
polyhedron(
|
||||
points = [
|
||||
[casrt,sasrt,z], // 0
|
||||
[casrt,sasrt,z+(3/4*p)], // 1
|
||||
[cas*rtp,sas*rtp,z+(3/8*p)], // 2
|
||||
[caert,saert,z+sh], // 3
|
||||
[caert,saert,z+(3/4*p)+sh], // 4
|
||||
[cae*rtp,sae*rtp,z+sh+(3/8*p)]], // 5
|
||||
triangles = [
|
||||
[0,1,2], // near face
|
||||
[3,5,4], // far face
|
||||
[0,3,4],[0,4,1], // left face
|
||||
[0,5,3],[0,2,5], // bottom face
|
||||
[1,4,5],[1,5,2]]); // top face
|
||||
}
|
||||
|
||||
module thread_in(dia,hi,thr=defQ)
|
||||
{
|
||||
p = get_coarse_pitch(dia);
|
||||
h = (cos(30)*p)/8;
|
||||
Rmin = (dia/2) - (5*h); // as wiki Dmin
|
||||
s = 360/thr;
|
||||
t = (hi-p)/p; // number of turns
|
||||
n = t*thr; // number of segments
|
||||
//echo(str("dia=",dia," hi=",hi," p=",p," h=",h," Rmin=",Rmin," s=",s));
|
||||
difference()
|
||||
{
|
||||
cylinder(r = (dia/2)+0.5,h = hi);
|
||||
translate([0,0,-1]) cylinder(r = (dia/2)+0.1, h = hi+2);
|
||||
}
|
||||
for(sg=[0:n])
|
||||
th_in_pt(Rmin+0.2,p,s,sg,thr,h,(hi-p)/n);
|
||||
}
|
||||
|
||||
module th_in_pt(rt,p,s,sg,thr,h,sh)
|
||||
// rt = radius of thread (nearest centre)
|
||||
// p = pitch
|
||||
// s = segment length (degrees)
|
||||
// sg = segment number
|
||||
// thr = segments in circumference
|
||||
// h = ISO h of thread / 8
|
||||
// sh = segment height (z)
|
||||
{
|
||||
// as = 360 - (((sg % thr) * s) - 180); // angle to start of seg
|
||||
// ae = as - s + (s/100); // angle to end of seg (with overlap)
|
||||
as = ((sg % thr) * s - 180); // angle to start of seg
|
||||
ae = as + s -(s/100); // angle to end of seg (with overlap)
|
||||
z = sh*sg;
|
||||
|
||||
cas=cos(as);
|
||||
sas=sin(as);
|
||||
cae=cos(ae);
|
||||
sae=sin(ae);
|
||||
rtp=rt+(5*h);
|
||||
|
||||
casrt=cas*rt;
|
||||
casrtp=cas*rtp;
|
||||
sasrt=sas*rt;
|
||||
sasrtp=sas*rtp;
|
||||
caert=cae*rt;
|
||||
caertp=cae*rtp;
|
||||
saert=sae*rt;
|
||||
saertp=sae*rtp;
|
||||
|
||||
// 2,5
|
||||
// /|
|
||||
// 1,4 / |
|
||||
// \ |
|
||||
// \|
|
||||
// 0,3
|
||||
// view from front (x & z) extruded in y by sg
|
||||
//
|
||||
polyhedron(
|
||||
points = [
|
||||
[casrtp,sasrtp,z], //0
|
||||
[casrt,sasrt,z+(3/8*p)], //1
|
||||
[casrtp,sasrtp,z+(3/4*p)], //2
|
||||
[caertp,saertp,z+sh], //3
|
||||
[caert,saert,z+(3/8*p)+sh], //4
|
||||
[caertp,saertp,z+(3/4*p)+sh]], //5
|
||||
triangles = [
|
||||
[0,1,2], // near face
|
||||
[3,5,4], // far face
|
||||
[0,3,4],[0,4,1], // left face
|
||||
[0,5,3],[0,2,5], // bottom face
|
||||
[1,4,5],[1,5,2]]); // top face
|
||||
}
|
11
beplating/lasercuttermount/lagerSubst.scad
Normal file
11
beplating/lasercuttermount/lagerSubst.scad
Normal file
|
@ -0,0 +1,11 @@
|
|||
$fn=60;
|
||||
|
||||
union(){
|
||||
difference(){
|
||||
translate([-20,-40,0])cube([40,60,5]);
|
||||
translate([0,5,-7])cylinder(r=8.5,h=20);
|
||||
# translate([10,-30,-2])cube([4,20,10]);
|
||||
# translate([-14,-30,-2])cube([4,20,10]);
|
||||
}
|
||||
}
|
||||
|
14
beplating/lasercuttermount/lagerSubst2.scad
Normal file
14
beplating/lasercuttermount/lagerSubst2.scad
Normal file
|
@ -0,0 +1,14 @@
|
|||
$fn=60;
|
||||
|
||||
union(){
|
||||
difference(){
|
||||
translate([0,0,0])cube([40,57,5]);
|
||||
translate([20,41,0])cylinder(r=8.5,h=20);
|
||||
#translate([10,10,0])cylinder(r=3,h=20);
|
||||
#translate([30,10,0])cylinder(r=3,h=20);
|
||||
//translate([10,-30,-2])cube([4,20,10]);
|
||||
//translate([-14,-30,-2])cube([4,20,10]);
|
||||
//translate([-20,-37,0])cube([30,20,10]);
|
||||
}
|
||||
}
|
||||
|
5210
beplating/lasercuttermount/lagerSubst2.stl
Normal file
5210
beplating/lasercuttermount/lagerSubst2.stl
Normal file
File diff suppressed because it is too large
Load diff
42960
beplating/lasercuttermount/mount.gcode
Normal file
42960
beplating/lasercuttermount/mount.gcode
Normal file
File diff suppressed because it is too large
Load diff
39
beplating/lasercuttermount/mount.scad
Normal file
39
beplating/lasercuttermount/mount.scad
Normal file
|
@ -0,0 +1,39 @@
|
|||
buisdikte=86;
|
||||
hoogte=20;
|
||||
bloklengte=40;
|
||||
blokdikte=20;
|
||||
bd = 2; // dikte vevestigingsbout
|
||||
tm = 75; //afstand tussen mitsumi's onder buis
|
||||
mh = 20; //mitsumi height
|
||||
$fn=200;
|
||||
/***************************************/
|
||||
include <ISOThread_20120823.scad>
|
||||
/***************************************/
|
||||
dia=buisdikte/2;
|
||||
module tubeholder(){
|
||||
union(){
|
||||
difference(){
|
||||
union(){
|
||||
cylinder(r=dia+hoogte/2,h=hoogte);
|
||||
translate([-dia-8,-20-tm/2,0])cube([40,tm+40,20]);
|
||||
}
|
||||
translate([0,0,-0.1])cylinder(r=dia,h=hoogte+0.2);
|
||||
}
|
||||
translate([-20,dia,0])rotate([0,0,0])cube([bloklengte,15,hoogte]);
|
||||
translate([-20,-dia-blokdikte+5,0])cube([bloklengte,15,hoogte]);
|
||||
}
|
||||
}
|
||||
module fastner() {
|
||||
difference() {
|
||||
cube([10,20,20]); //holder1
|
||||
translate([-10,10,10])rotate([0,90,0])cylinder(r=3,h=40);
|
||||
}
|
||||
}
|
||||
difference(){
|
||||
tubeholder();
|
||||
translate([0,-110,-20])cube([100,235,50]);
|
||||
//translate([-100,-110,-10])cube([100,235,30]);
|
||||
}
|
||||
translate([-dia-mh-8,-tm/2,0])cube([mh,tm,mh]); //20*20 voor tussen mitsumi
|
||||
#translate([-51,37.5,20])fastner();
|
||||
#translate([-51,-57.5,20])fastner();
|
23550
beplating/lasercuttermount/mount.stl
Normal file
23550
beplating/lasercuttermount/mount.stl
Normal file
File diff suppressed because it is too large
Load diff
48996
beplating/lasercuttermount/mount2.0.1.gcode
Normal file
48996
beplating/lasercuttermount/mount2.0.1.gcode
Normal file
File diff suppressed because it is too large
Load diff
14534
beplating/lasercuttermount/mount2.0.1.stl
Normal file
14534
beplating/lasercuttermount/mount2.0.1.stl
Normal file
File diff suppressed because it is too large
Load diff
68516
beplating/lasercuttermount/mount2.0.2.gcode
Normal file
68516
beplating/lasercuttermount/mount2.0.2.gcode
Normal file
File diff suppressed because it is too large
Load diff
47991
beplating/lasercuttermount/mount2.0.gcode
Normal file
47991
beplating/lasercuttermount/mount2.0.gcode
Normal file
File diff suppressed because it is too large
Load diff
14534
beplating/lasercuttermount/mount2.0.stl
Normal file
14534
beplating/lasercuttermount/mount2.0.stl
Normal file
File diff suppressed because it is too large
Load diff
39
beplating/lasercuttermount/mount2.scad
Normal file
39
beplating/lasercuttermount/mount2.scad
Normal file
|
@ -0,0 +1,39 @@
|
|||
buisdikte=86;
|
||||
hoogte=20;
|
||||
bloklengte=40;
|
||||
blokdikte=20;
|
||||
bd = 2; // dikte vevestigingsbout
|
||||
tm = 75; //afstand tussen mitsumi's onder buis
|
||||
mh = 20; //mitsumi height
|
||||
$fn=200;
|
||||
/***************************************/
|
||||
include <ISOThread_20120823.scad>
|
||||
/***************************************/
|
||||
dia=buisdikte/2;
|
||||
module tubeholder(){
|
||||
union(){
|
||||
difference(){
|
||||
union(){
|
||||
cylinder(r=dia+hoogte/2,h=hoogte);
|
||||
translate([-dia-8,-20-tm/2,0])cube([40,tm+40,20]);
|
||||
}
|
||||
translate([0,0,-0.1])cylinder(r=dia,h=hoogte+0.2);
|
||||
}
|
||||
translate([-20,dia,0])rotate([0,0,0])cube([bloklengte,15,hoogte]);
|
||||
translate([-20,-dia-blokdikte+5,0])cube([bloklengte,15,hoogte]);
|
||||
}
|
||||
}
|
||||
module fastner() {
|
||||
difference() {
|
||||
cube([14,20,20]); //holder1
|
||||
translate([-10,10,10])rotate([0,90,0])cylinder(r=3,h=40);
|
||||
}
|
||||
}
|
||||
difference(){
|
||||
tubeholder();
|
||||
translate([0,-110,-20])cube([100,235,50]);
|
||||
//translate([-100,-110,-10])cube([100,235,30]);
|
||||
}
|
||||
translate([-dia-mh-2+10,-20-tm/2,0])cube([4,115,20]); //20*20 voor tussen mitsumi
|
||||
#translate([-55,37.5,20])fastner();
|
||||
#translate([-55,-57.5,20])fastner();
|
14450
beplating/lasercuttermount/mount2.stl
Normal file
14450
beplating/lasercuttermount/mount2.stl
Normal file
File diff suppressed because it is too large
Load diff
17705
beplating/lasercuttermount/mount3.gcode
Normal file
17705
beplating/lasercuttermount/mount3.gcode
Normal file
File diff suppressed because it is too large
Load diff
19434
beplating/lasercuttermount/mount3.stl
Normal file
19434
beplating/lasercuttermount/mount3.stl
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue