Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 2

PROGRAM BASICS

G90 (Absolute input)

Position a to f can be commanded in the absolute input mode as given table below.

POSITION
A
B
C
D
E
F

X
0
30.000
60.000
30.000
-20.000
-10.000

Y
0
20.000
40.000
-30.000
10.000
-40.000

G91 (INCREMENTAL INPUT)


Now, points A to f are commanded in the incremental input mode.
POSITION
A to B
B to C
C to D
D to E
E to F

X
30.000
30.000
-30.000
-50.000
10.000

Y
20.000
20.000
-70.000
40.000
-50.000

As expressed above, the current position is always taken as zero point. This method refers
to incremental input. When programming, the G91 code commands the incremental input
mode. This is the same for the z-axis.
In an actual program, these are commanded as follows
(Command block for pointd in the absolute input mode)
G90X30.000Y-30.000
G90X30.Y-30

or

This is because the minimum input increment of the system is .0001mm. the use of the
decimal point input is also available. Note, however, that the addresses allowing the
decimal point input are limited as follows:
X,Y,Z,A,B,C,I,J,K,R,Q & F

You might also like