2022-10-03 00:35:03 +00:00
|
|
|
|
|
|
|
// height of the base
|
|
|
|
h_base = 5;
|
|
|
|
// outside rounded radius of bin
|
|
|
|
r_base = 4;
|
|
|
|
// lower base chamfer "radius"
|
|
|
|
r_c1 = 0.8;
|
|
|
|
// upper base chamfer "radius"
|
|
|
|
r_c2 = 2.4;
|
|
|
|
// bottom thiccness of bin
|
|
|
|
h_bot = 2.2;
|
|
|
|
// outside radii 1
|
|
|
|
r_fo1 = 8.5;
|
|
|
|
// outside radii 2
|
|
|
|
r_fo2 = 3.2;
|
|
|
|
// outside radii 3
|
|
|
|
r_fo3 = 1.6;
|
2023-05-31 15:46:30 +00:00
|
|
|
// length of a grid unit
|
|
|
|
l_grid = 42;
|
2022-10-03 00:35:03 +00:00
|
|
|
|
|
|
|
// screw hole radius
|
|
|
|
r_hole1 = 1.5;
|
|
|
|
// magnet hole radius
|
|
|
|
r_hole2 = 3.25;
|
|
|
|
// center-to-center distance between holes
|
2023-04-26 17:05:37 +00:00
|
|
|
d_hole = 26;
|
|
|
|
// distance of hole from side of bin
|
|
|
|
d_hole_from_side=8;
|
2022-10-03 00:35:03 +00:00
|
|
|
// magnet hole depth
|
|
|
|
h_hole = 2.4;
|
2022-11-09 17:29:55 +00:00
|
|
|
// slit depth (printer layer height)
|
|
|
|
h_slit = 0.2;
|
2022-10-03 00:35:03 +00:00
|
|
|
|
|
|
|
// top edge fillet radius
|
|
|
|
r_f1 = 0.6;
|
|
|
|
// internal fillet radius
|
|
|
|
r_f2 = 2.8;
|
|
|
|
|
|
|
|
// width of divider between compartments
|
|
|
|
d_div = 1.2;
|
|
|
|
// minimum wall thickness
|
|
|
|
d_wall = 0.95;
|
|
|
|
// tolerance fit factor
|
|
|
|
d_clear = 0.25;
|
|
|
|
|
|
|
|
// height of tab (yaxis, measured from inner wall)
|
|
|
|
d_tabh = 15.85;
|
|
|
|
// maximum width of tab
|
|
|
|
d_tabw = 42;
|
|
|
|
// angle of tab
|
|
|
|
a_tab = 36;
|
2023-02-07 23:02:46 +00:00
|
|
|
// lip height
|
|
|
|
h_lip = 3.548;
|
2022-10-03 00:35:03 +00:00
|
|
|
|
|
|
|
d_wall2 = r_base-r_c1-d_clear*sqrt(2);
|
|
|
|
d_magic = -2*d_clear-2*d_wall+d_div;
|
2022-10-04 19:40:20 +00:00
|
|
|
|
|
|
|
// Baseplate constants
|
|
|
|
|
|
|
|
// Baseplate bottom part height (part added with weigthed=true)
|
|
|
|
bp_h_bot = 6.4;
|
|
|
|
// Baseplate bottom cutout rectangle size
|
|
|
|
bp_cut_size = 21.4;
|
|
|
|
// Baseplate bottom cutout rectangle depth
|
|
|
|
bp_cut_depth = 4;
|
|
|
|
// Baseplate bottom cutout rounded thingy width
|
|
|
|
bp_rcut_width = 8.5;
|
|
|
|
// Baseplate bottom cutout rounded thingy left
|
|
|
|
bp_rcut_length = 4.25;
|
|
|
|
// Baseplate bottom cutout rounded thingy depth
|
2022-10-12 01:34:02 +00:00
|
|
|
bp_rcut_depth = 2;
|
|
|
|
// countersink diameter for baseplate
|
|
|
|
d_cs = 2.5;
|
|
|
|
// radius of cutout for skeletonized baseplate
|
|
|
|
r_skel = 2;
|
|
|
|
// baseplate counterbore radius
|
|
|
|
r_cb = 2.75;
|
|
|
|
// baseplate counterbore depth
|
|
|
|
h_cb = 3;
|
2022-10-12 02:05:18 +00:00
|
|
|
// minimum baseplate thickness (when skeletonized)
|
|
|
|
h_skel = 1;
|
2023-02-17 17:23:59 +00:00
|
|
|
|
|
|
|
// Prime numbers
|
|
|
|
p_corn = 401;
|