120 likes | 429 Views
CNC Programming. Circular Interpolation. Circular Interpolation. G02 Clockwise G03 Counter Clockwise. G02 Clockwise G02 X__ Y__ I__ J__ F__. X__ Y__ Is the distance from part zero to the end point of the arc
E N D
CNC Programming Circular Interpolation
Circular Interpolation • G02 Clockwise • G03 Counter Clockwise
G02 ClockwiseG02 X__ Y__ I__ J__ F__ • X__ Y__ Is the distance from part zero to the end point of the arc • I__ J__ Is the incremental distance from the start point of the arc to the center point I is relatedto X and J is related to Y • I__ Is an incremental X move • J__ Is an incremental Y move
Circular Interpolation Example X1Y2 I0J-1 Example N0 G90 ; Absolute coord N5 G01 X1 Y2 ; start N10 G02 X2 Y1I0 J-1 X1Y2
Example N5 G90 G01 X0 Y2.75 F10 N10 G02 X.25 Y3. I.25 J0 N15 G01 X3.875 N20 G02 X4. Y2.875 I0 J-.125 N25 G01 Y.125 N30 G02 X3.875 Y0 I -.125 J0 N35 G01 X.25 N40 G02 X0 Y.25 I0 J.25 N45 G01 Y3.