UG后处理,FAUNC系统,如何自动识别转换:G8.1 P1粗加工模式、G8.1 P2半精加工模式、G8.1 P3粗加工模式,可不可以用工序导航器-加工方法进行分类,后处理自动设别。
%
O0001
(NC name: 12345)
(Date: Mon May 15 14:53:12 2023)
(Tool=D16CU DIA=D16.0 R=0.0)
(XY =0.000 Z =0.100)
G40 G00 G17 G80 G90
G8.1 P1 (此处自动识别)
G91 G28 Z0.0
T17 M06
T09
G00 G90 G54 X326.426 Y191.827 S5500 M03
G43 Z58. H17
M08
Z8.5
。。。。。。。。。。
。。。。。。。。。。
可以使用公差来判断,也可以忽略某种操作,比如钻孔。
global mom_inside_outside_tolerances mom_operation_type
set tol [expr $mom_inside_outside_tolerances(0) + $mom_inside_outside_tolerances(1)]
if {$tol >= 0.015} {
MOM_output_literal "G8.1 P1"
} else {
MOM_output_literal "G8.1 P3"
}