Arc

 

G code: G2, G3

Function: This command interpolates an arc from the current position along a circular path to the target position. G2 moves clockwise and G3 moves counterclockwise.

The arc is defined as follows:

Note

Inconsistent parameters lead to a line being traveled instead of a circle. Examples: If the radius is less than half of the distance between the start and target, then the deviation cannot be corrected. This is also the case if the defined midpoint to the start and target position has a different distance.

Syntax

G2 X Y Z R A B C P Q U V W F E H L/O D S
G2 X Y Z I J K A B C P Q U V W F E H L/O D S
G2 I J K T A B C P Q U V W F E H L/O D S
G3 X Y Z R A B C P Q U V W F E H L/O D S
G3 X Y Z I J K A B C P Q U V W F E H L/O D S
G3 I J K T A B C P Q U V W F E H L/O D S

G code word

Description

X Y Z

Target positions of the Cartesian axes

R

Circle radius

I J K

Circle midpoint coordinates

T

Opening angle (in degrees)

A B C P Q U V W

Target positions of the additional axes

F E

Path velocity, path acceleration/deceleration

H L/O

Switch point

D

Tool radius

S

S profile

Graphical representation: An arc is represented by black end points. The end points can be moved when you select the element.

See also

Radius method

You can use the radius method for generating an arc < 180°. The radius method is valid for two arcs. One is smaller than a semicircle and one is larger than a semicircle. The system always uses the smaller arc.

Example

Semicircle

N10 G1 X100 Y100 F100
N20 G2 X200 Y100 R50

Use the midpoint method with I/J/K for generating an arc with an opening angle greater than 180°. The radius method is unique, except in the case that the start and end points of the circle are identical. This defines either a null circle or a full circle. In this case, the system inserts a full circle.

Midpoint method

If you use the midpoint method, then you distinguish whether the coordi­nates I/J/K are relative or absolute. If I, J, and K are not specified correctly, then an arc is not possible and the system replaces it with a line. If it is correct, then the distance between the midpoint and the start or end point is identical.

Examples

Same semicircle as in the radius method; specified by means of relative midpoint

N10 G1 X100 Y100 F100
N15 G99
N20 G2 X200 Y100 I50 J0

Same semicircle as in the radius method; specified by means of absolute midpoint

N10 G1 X100 Y100 F100
N15 G98
N20 G2 X200 Y100 I150 J100

See also

Opening angle method

If you define the circle by the opening angle T, then a maximum of three full circles are permitted (T≤1080). The opening angle method is appro­priate for an arc³ > 180°.

Examples

Same semicircle as in the radius method; specified by means of opening angle

N10 G1 X100 Y100
N15 G99
N20 G2 I50 J0 T180

Helix (two full circles)

N10 G1 X100 Y100
N15 G99
N20 G2 I50 J0 T720

Arc in 3D mode

In 3D mode, the system defines the arcs by the interpolation plane that is defined by means of G15-G19.

Example

One semicircle in the xz-plane and one semicircle in the xy-plane

N10 G1 X100 Y100
N15 G18
N20 G2 X200 R50
N25 G17
N30 G3 X100 R50