siendo un poco mas concretos.
si solo pongo G28Z0
la orden G28 me anulara el G90 que trae predeterminado el programa desde el inicio donde lee el G54?
digamos que mi programa es este.
Código: Seleccionar todo
%
O00010
( Fecha : Wed May 26 09:46:33 2010 )
( Programador : )
G40 G17 G49 G80 G90
( Start of Path : G110_10 )
G110
( End of Path : G110_10 )
M09
( Start of Path : CENTROS_10 )
( Tool Number: 24 )
( Tool Name : T24_CHANFER_PALLET_45-DEG )
( Tool Diameter: 0.635 )
( Tool Length: 19.050 )
T24 M06
M08
S5000 M03
G00 G90 X11. Y135.
G43 H24 Z32.
G82 X11. Y135. Z11.71 R16.31 F200.
Y115.
Y99.
Y79.
Y63.
Y43.
Y27.
Y7.
G80
G00 Z32.
( End of Path : CENTROS_10 )
M09
( Start of Path : CENTROS-2_10 )
M08
S5000 M03
G00 G90 X9.1 Y17.
G82 X9.1 Y17. Z11.71 R16.31 F200.
Y53.
Y89.
Y125.
G80
G00 Z32.
( End of Path : CENTROS-2_10 )
M09
( Start of Path : BROCA_1-8_10 )
( Tool Number: 1 )
( Tool Name : T01_H55_DRILL_1-8--- )
( Tool Diameter: 3.175 )
( Tool Length: 31.750 )
T01 M06
M08
S6000 M03
G00 G90 X11. Y7.
G43 H55 Z32.
G83 X11. Y7. Z-4. R14. F380. Q1.6
Y27.
Y43.
Y63.
Y79.
Y99.
Y115.
Y135.
G80
G00 Z32.
( End of Path : BROCA_1-8_10 )
M09
( Start of Path : CAMBIO_DE_BROCA_10 )
G00G91G28Z0.
G00G91G28Y0.
M00
(CAMBIO_DE_BROCA)
( End of Path : CAMBIO_DE_BROCA_10 )
M09
( Start of Path : BROCA_25_10 )
( Tool Number: 1 )
( Tool Name : T01_H59_DRILL_25---- )
( Tool Diameter: 3.797 )
( Tool Length: 47.625 )
T01 M06
M08
S5000 M03
G00 G90 X9.1 Y17.
G43 H59 Z32.
G83 X9.1 Y17. Z-5. R14. F380. Q1.6
Y53.
Y89.
Y125.
G80
G00 Z32.
( End of Path : BROCA_25_10 )
M09
( Start of Path : CAMBIO_DE_BROCA_10_COPY )
G00G91G28Z0.
G00G91G28Y0.
M00
(CAMBIO_DE_BROCA)
( End of Path : CAMBIO_DE_BROCA_10_COPY )
M09
si lo ven bien, tengo 2 T01. pero con diferente H. esto es por que siempre las brocas las metemos de forma "manual" en los programas.. pero si bien tengo que crear un millcontrol para mandar a HOME y activar un paro para que el operador monte la siguiente broca.
se entiende que al colocar el G91 estamos desactivando el G90 que apareció en esta línea.
Código: Seleccionar todo
( Start of Path : BROCA_1-8_10 )
( Tool Number: 1 )
( Tool Name : T01_H55_DRILL_1-8--- )
( Tool Diameter: 3.175 )
( Tool Length: 31.750 )
T01 M06
M08
S6000 M03
G00 G90 X11. Y7.
es por eso que después del G91G00G28Z0 y después del M00 se tiene que agregar nuevamente el G90.
ejemplo esta línea.
Código: Seleccionar todo
M00
(CAMBIO_DE_BROCA)
( End of Path : CAMBIO_DE_BROCA_10 )
M09
( Start of Path : BROCA_25_10 )
( Tool Number: 1 )
( Tool Name : T01_H59_DRILL_25---- )
( Tool Diameter: 3.797 )
( Tool Length: 47.625 )
T01 M06
M08
S5000 M03
G00 G90 X9.1 Y17.
la pregunta mas concreta es.. si en lugar de poner
G91G00G28Z0
G91G00G28Y0
pongo únicamente
G28Z0
G28Y0
¿se desactivara el G90?
¿ tendré que activar aun así el 90 después del M00?