added dimSegmentY[] to adjust 5.6" - 9.6"

This commit is contained in:
2026-04-22 15:12:23 -04:00
parent 03f785b638
commit 155b047f51

View File

@@ -1,31 +1,39 @@
nW = 0.40; // Nozzle width without elephant foot nW = 0.40; // Nozzle width without elephant foot
EF = 0.2; // Elephant foot EF = 0.2; // Elephant foot
LH = 0.2; // Nominal Layer Height LH = 0.2; // Nominal Layer Height
VOID = 0.02; // Eliminating void between mating surfaces VOID = 0.02; // Eliminating void between mating surfaces
inchXYZ = 25.4;
scaleFACTOR = 1.0;
$fn = 64; scaleFACTOR = 1.0;
//$fa = 10; $fn = 64;
//$fa = 10;
wd = 2.6; // wire diameter
wOpenEnd = 116; // when the U-shape is pulled into a V-shape wd = 2.6; // wire diameter
wClosedEnd = 26; // the closed of the stamp wOpenEnd = 116; // when the U-shape is pulled into a V-shape
wMidHeight = 140; // approximation of the 6" as U or V wClosedEnd = 26; // the closed of the stamp
wMidHeight = 140; // approximation of the 6" as U or V
cntY = 1; // Number of wires stacked
wShiftY=3.25*wd; cntY = 1; // Number of wires stacked
moveY=((cntY*wShiftY)-(wShiftY*0.5))-((cntY-2)*(wShiftY*0.5))-(wd*0.25); wShiftY=3.25*wd;
sizeY=(wd*0.5)+(wMidHeight+(wShiftY*(cntY-1))); moveY=((cntY*wShiftY)-(wShiftY*0.5))-((cntY-2)*(wShiftY*0.5))-(wd*0.25);
bbY=[wOpenEnd+wd, sizeY, wd]; sizeY=(wd*0.5)+(wMidHeight+(wShiftY*(cntY-1)));
bbY=[wOpenEnd+wd, sizeY, wd];
cntZ = 1; // Number of wires stacked
moveZ=(cntZ*wd); cntZ = 1; // Number of wires stacked
bbZ=[wOpenEnd+wd, wMidHeight+(wd*0.5), moveZ]; moveZ=(cntZ*wd);
bbZ=[wOpenEnd+wd, wMidHeight+(wd*0.5), moveZ];
// Used in hinged_conveyor_simple()
changeOpening = 2.25*wd; // 0.25 wd is an estimate clearance, to deal with the 0.4 nozzle capacity to hold dimension // Used in hinged_conveyor_simple()
increaseOpen = wClosedEnd + changeOpening; changeOpening = 2.25*wd; // 0.25 wd is an estimate clearance, to deal with the 0.4 nozzle capacity to hold dimension
decreaseOpen = wClosedEnd - changeOpening; increaseOpen = wClosedEnd + changeOpening;
decreaseOpen = wClosedEnd - changeOpening;
/* SlideY values
These are the standard dimensions, each provides an uniform and stable segment Y
[0] = wMidHeight + wd = 142.6 mm = 5.6"
[8] = 9.6"
*/
dimSegmentY = [0, (0.5*inchXYZ),(1*inchXYZ),(1.5*inchXYZ),(2*inchXYZ),(2.5*inchXYZ),(3*inchXYZ),(3.5*inchXYZ),(4*inchXYZ)];