산업 제조
산업용 사물 인터넷 | 산업자재 | 장비 유지 보수 및 수리 | 산업 프로그래밍 |
home  MfgRobots >> 산업 제조 >  >> Manufacturing Equipment >> CNC 기계

펙 드릴링을 위한 Fanuc 선반 맞춤형 매크로

Fanuc Peck 드릴링 매크로

X축과 Z축을 따라 미리 공구를 드릴링 사이클이 시작되는 위치로 이동합니다. 구멍 깊이로 Z 또는 W를 지정하고, 절단 깊이로 K를 지정하고, 구멍을 뚫기 위한 절삭 이송 속도로 F를 지정하십시오.

FANUC Series 30i/31i/32i-MODEL A와 같은 Fanuc cnc 컨트롤에서 작동하는 Custom Macro를 따르십시오

프로그래밍

G65 P9100 Z K F

또는

G65 P9100 W K F

맞춤형 매크로

메인 프로그램

G50 X100.0 Z200.0 ;
G00 X0 Z102.0 S1000 M03 ;
G65 P9100 Z50.0 K20.0 F0.3 ;
G00 X100.0 Z200.0 M05 ;
M30

매크로 프로그램

O9100;
#1=0; (Clear the data for the depth of the current hole.)
#2=0; (Clear the data for the depth of the preceding hole.)
IF [#23 NE #0] GOTO 1; (If incremental programming, specifies the jump to N1.)
IF [#26 EQ #0] GOTO 8; (If neither Z nor W is specified, an error occurs.)
#23=#5002-#26; (Calculates the depth of a hole.)
N1 #1=#1+#6; (Calculates the depth of the current hole.)
IF [#1 LE #23] GOTO 2; (Determines whether the hole to be cut is too deep?)
#1=#23; (Clamps at the depth of the current hole.)
N2 G00 W-#2; (Moves the tool to the depth of the preceding hole at the cutting feedrate.)
G01 W- [#1-#2] F#9; (Drills the hole.)
G00 W#1; (Moves the tool to the drilling start point.)
IF [#1 GE #23] GOTO 9; (Checks whether drilling is completed.)
#2=#1; (Stores the depth of the current hole.)
N9 M99
N8 #3000=1; (NOT Z OR U COMMAND Issues an alarm.)

CNC 기계

  1. 선반 시리즈는 맞춤형 제어 기능을 제공합니다.
  2. 심공 드릴링을 위한 공구 안정성 솔루션
  3. Fanuc G74 Peck 드릴링 사이클을 사용한 간단한 CNC 선반 드릴링
  4. Fanuc CNC 선반 프로그래밍 예
  5. G78 스레딩 사이클 – Fanuc 선반 프로그래밍
  6. Fanuc G84 리지드 펙 태핑 사이클
  7. G70 볼트 홀 원형 샘플 프로그램이 포함된 G83 펙 드릴링 사이클
  8. 카운터보어용 G65 매크로
  9. 내부 헬리컬용 G65 매크로
  10. Fanuc Macro 및 G66 Modal Call을 통해 나만의 G81 드릴링 사이클 만들기
매개변수 설명
Z 홀 깊이(절대 프로그래밍)
홀 깊이(증분 프로그래밍)
K 주기당 절삭량
F 절삭 이송 속도