From 363a8bc5533d34233cf535ee9227c57317e75f9c Mon Sep 17 00:00:00 2001 From: tonym Date: Sun, 28 Dec 2025 23:19:04 -0600 Subject: [PATCH] Upload files to "calibration" --- calibration/1%22 pipe ring test.scad | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 calibration/1%22 pipe ring test.scad diff --git a/calibration/1%22 pipe ring test.scad b/calibration/1%22 pipe ring test.scad new file mode 100644 index 0000000..2c41973 --- /dev/null +++ b/calibration/1%22 pipe ring test.scad @@ -0,0 +1,25 @@ +// --- 1" PIPE RING TEST ARRAY --- +$fn = 80; +p1 = 33.4; // 1" Pipe OD +wall = 3.0; +h = 10; // Height of ring + +offsets = [0.05, 0.10, 0.15, 0.20, 0.25, 0.30]; + +for (i = [0 : 5]) { + translate([i * 45, 0, 0]) { + difference() { + // Outer Ring + cylinder(d = p1 + offsets[i] + (wall*2), h = h); + // Inner Hole + translate([0,0,-1]) cylinder(d = p1 + offsets[i], h = h+2); + + // Identification Notches (Number of notches = position in array) + for (n = [0 : i]) { + rotate([0, 0, n * 15]) + translate([(p1 + wall*2)/2, 0, h/2]) + cube([4, 1, h+1], center=true); + } + } + } +} \ No newline at end of file