comandos bÁsicos de cnc simulator

Upload: rafael-santos-perez

Post on 14-Apr-2018

268 views

Category:

Documents


0 download

TRANSCRIPT

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    1/12

    Programacin bsica

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    2/12

    Cada movimiento o accin se realiza

    secuencialmente.

    Cada BLOQUE debe ser numerado yusualmente contiene un solo

    comando.

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    3/12

    Cdigos G

    Funciones de movimiento de la mquina(Movimientos rpidos, avances, avancesradiales, pausas, ciclos).

    Cdigos MFunciones generales de la mquina

    (Arranque y paro del husillo, cambio de

    herramienta, refrigerante, paro de programa).

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    4/12

    VARIABLES

    N

    Nmero de Bloque (Inicio de bloque).

    THerramienta a utilizarse.

    S Velocidad del husillo.

    F

    Velocidad con que la herramienta recorrer la pieza.

    X, Y, Z

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    5/12

    COORDENADAS ABSOLUTASCualquier punto se ubica por la distancia del

    origen (0,0) a dicho punto.

    ( X(+)(-)__ ,Y(+)(-)__ ,Z(+)(-)__ )

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    6/12

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    7/12

    G00 POSICIONAMIENTO RPIDO(SIN MAQUINAR)

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    8/12

    G01 INTERPOLACIN LINEAL(MAQUINANDO)

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    9/12

    G02 INTERPOLACIN CIRCULAR CW(SENTIDO HORARIO F)

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    10/12

    G03 INTERPOLACIN CIRCULAR CCW(SENTIDO ANTI-HORARIO F)

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    11/12

    ESPECIFICACIONES:PIEZA X100 Y100 Z30BILLET TOOLDEF T01 D2

    1. (50,20)2. (50,80)3. (50,50)4. (50,20)

    R20

    OBTEN LA SIGUIENTEPIEZA UTILIZANDOLAS ESPECIFICACIONESCORRESPONDIENTES:

  • 7/27/2019 COMANDOS BSICOS DE CNC SIMULATOR

    12/12

    RESPUESTA:

    BILLET X100 Y100 Z30 TOOLDEF T01 D2 N10 G00 X0 Y0 Z10; N20 G00 X50 Y20 Z0; N30 G01 Z-5 F200; N40 Y80; N50 G02 X50 Y50 R-20;

    N60 G03 X50 Y20 R-20; N70 G00 Z10; N80 G00 X0 Y0