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

Fanuc 볼트 구멍 원형 사용자 지정 매크로(BHC)

제출자:cnc 프로그래머

그림/이미지

CNC 프로그램

/*Parameters
G65 P9100 Xx Yy Zz Rr Ff Ii Aa Bb Hh
X: X coordinate of the center of the circle (#24)
Y: Y coordinate of the center of the circle (#25)
Z: Hole depth (#26)
R: Coordinates of an approach point (#18)
F: Cutting feedrate (#9)
I: Radius of the circle (#4)
A: Drilling start angle (#1)
B: Incremental angle (Clockwise when negative value) (#2)
H: Number of holes (#11)
*/

O9100
#3=#4003
G81 Z#26 R#18 F#9 K0
IF[#3 EQ 90]GOTO 1
#24=#5001+#24
#25=#5002+#25
N1 WHILE[#11 GT 0]DO 1
#5=#24+#4*COS[#1]
#6=#25+#4*SIN[#1]
G90 X#5 Y#6
#1=#1+#2
#11=#11-1
END 1
G#3 G80
M99

/*Fanuc Bolt Hole Macro Example
Example macro call to drill 5 holes at intervals of 45 degrees
after a start angle of 0 degrees
on the circumference of a circle with radius 4”.
The absolute center of the circle is (10”, 5”).*/
O0002
G90 G92 X0 Y0 Z4.0
G65 P9100 X10.0 Y5.0 R1.0 Z-2.0 F20 I4.0 A0 B45.0 H5
M30

CNC 기계

  1. 맞춤형 CNC 머시닝 서비스
  2. CNC 가공 맞춤형 부품
  3. 선반 시리즈는 맞춤형 제어 기능을 제공합니다.
  4. 이름으로 사용자 정의 매크로 변수를 참조하는 방법
  5. 듀얼 Fanuc 로봇 통합을 통한 맞춤형 개조
  6. 맞춤형 레이저 조각 선물
  7. Fanuc G68 좌표 회전
  8. Fanuc Dwell G04 사령부
  9. Fanuc G04 드웰
  10. Fanuc Macro 및 G66 Modal Call을 통해 나만의 G81 드릴링 사이클 만들기