N-CNC-GCode

Aus SpaceOnEarth
Version vom 31. Oktober 2020, 23:02 Uhr von h_>Axel (Die Seite wurde neu angelegt: „ === Koordinaten Systeme === G53 und G54 sind die Bezeichner der wichtigsten Koordinatensysteme in LinuxCNC. G53 ist im LinuxCNC die Maschienenkoordinaten bei…“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)

Koordinaten Systeme

G53 und G54 sind die Bezeichner der wichtigsten Koordinatensysteme in LinuxCNC.

G53 ist im LinuxCNC die Maschienenkoordinaten bei AxelsCNC sind das X in[0,500] Y in[0,495] Z in[-80,0] Die Maschiene arbeitet den gcode standartmäßig jedoch im G54 ab.

When you home LinuxCNC you set the G53 Machine Coordinate System to 0 for each axis homed. No other coordinate systems or tool offsets are changed by homing. The only time you move in the G53 machine coordinate system is when you program a G53 on the same line as a move. Normally you are in the G54 coordinate system.

Mit dem Kommando G10 L2 P1 X0 Y0 Z0 R0 setzt man den Nullpunkt von G54 auf den Nullpunkt des G53 Koordinatensystems. zB: G10 L2 X100 Y100 Z-20

   setzt den Ursprung von G54 auf die Maschienenkoordinaten X100 Y100 Z-20

G10 L20 is similar to G10 L2 except that instead of setting the offset/entry to the given value, it is set to a calculated value that makes the current coordinates become the given value. zB: G10 L20 X10 Y10 Z20

   setzt die aktuelle Position als X10 Y10 Z20 im G54 Koordinatensystem