Changes for page G1: Линейное перемещение
Last modified by writer on 2023/02/09 17:33
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -3,14 +3,14 @@ 3 3 4 4 For linear interpolation at a given feedrate, specify (% style="color:#a0be2d" %)//**G1**//(%%) ‘axes’, where specifying any axis is optional. (% style="color:#a0be2d" %)//**G1**//(%%) is optional if the current mode of movement is (% style="color:#a0be2d" %)//**G1**//(%%). This command linearly moves to the destination with the current feedrate (or less if the axis movement cannot be so fast). 5 5 6 -(% style="color:#a0be2d" %)//**G1**//(%%)// example: // 6 +{{code language="g-code" title="(% style=~"color:#a0be2d~" %)//**G1**//(%%)// example: //"}} 7 +G90 (set absolute positioning mode) 8 +G1 X1.2 Y-3 F10 (linear interpolation with feed 10 from the current position in X1.2 Y-3) 9 +Z-2.3 (linear interpolation with the same feed from the current position in Z-2.3) 10 +Z1 F25 (linear interpolation with feed 25 from the current position in Z1) 11 +M30 (end of program) 12 +{{/code}} 7 7 8 -(% style="color:#a0be2d" %)//**G90**//(%%) (set absolute positioning mode) 9 -(% style="color:#a0be2d" %)//**G1 X1.2 Y-3 F10**//(%%) (linear interpolation with feed 10 from the current position in //X1.2 Y-3//) 10 -(% style="color:#a0be2d" %)//**Z-2.3** //(%%)(linear interpolation with the same feed from the current position in //Z-2.3//) 11 -(% style="color:#a0be2d" %)//**Z1 F25**//(%%) (linear interpolation with feed 25 from the current position in //Z1//) 12 -(% style="color:#a0be2d" %)//**M2**//(%%) (end of program) 13 - 14 14 If the (% style="color:#a0be2d" %)//**G53**//(%%) command is shown on the same line as (% style="color:#a0be2d" %)//**G1**//(%%), the movement will be different from the one indicated above. See the description of the [[(% style="color:#a0be2d" %)//**G53**//>>doc:Руководство пользователя.Описание G-кодов.Список G-кодов, поддерживаемых системой.G40-G79.G53: Перемещение в машинных координатах]](%%) command for more details. 15 15 16 16 {{error title="**It is an error if:**"}}