2022年PowerMILL后处理修改教程 .pdf
《2022年PowerMILL后处理修改教程 .pdf》由会员分享,可在线阅读,更多相关《2022年PowerMILL后处理修改教程 .pdf(10页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、PowerMILL 后处理修改教程本教程是偶在实际使用中的PowerMILL后处理文件修改知识的积累,其中有部分修改案例来源于帮助文件,在此仅以文字和图片的形式把他记录下来与初学者共同分享。By mymould (风影爱人)一、完整的后处理文件介绍一个完整的后处理文件通常有:定义字符段、定义字符格式段、定义键值段、定义指令值段、变量定义、程序格式段等部分组成。下面我们先来看一个比较完整的后处理文件,并把它分为数段,把需要修改的地方做个必要的解释:machine fanucom 后处理文件头= 第一部分是定义字符段= define word TN address letter = TOOL TY
2、PE :- address width = 13 field width = 25 end define 具体解释:define word TN 定义字段;address letter = TOOL TYPE :- 定义字段的返回值,比如在后处理文件里有“MS =C ; TN ToolType ; EM =C ” ,而在写程式的时候选用的是端铣刀,那么在CNC 程式里就会有(TOOL TYPE :- ENDMILL ) ;address width = 13 定义字符宽度,如上TOOL TYPE :- ,从 T 开始算起一共13 位,包括空格;field width = 25 定义返回字的宽度
3、,如上 ENDMILL,如果 field width = 2 ,那 TOOL TYPE :- 就返回 EN;如果 field width = 25 ,那 TOOL TYPE :- 就返回ENDMILL 。end define = 第二段是定义字符的格式= define format ( / G6 S T M1 M2 L P D E H O ) address width = 1 field width = 2 exponent width = 0 scale factor = 1 scale divisor = 1 tape position = 0 print position = 1 si
4、gn = none not permanent not modal metric formats leading zeros = false trailing zeros = true decimal point = false 控制公制尺寸的前导零、后导零,小数点decimal places = 0 imperial formats 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 10 页 - - - - - - - - - leading zeros = false
5、trailing zeros = true decimal point = false 控制英制尺寸的前导零、后导零,小数点decimal places = 0 end define word order = ( OP N G1 G2 G3 G4 G5 ) word order = ( + G6 G7 X YZ B C ) word order = ( + I J K R D S T ) word order = ( + H M1 M2 MS msg EM Q ) 注册字符word order = ( + Q1 Z2 R2 ID F ) word order = ( + TN TD TR DY
6、MT YR PM ) = 第三段是定义键值= define keys blocknumber = N 定义程序段号preparatory function = G1 定义准备功能指令aux function = M1 定义辅助功能指令x feedrate not used 定义 X 进给率指令y feedrate not used 定义 Y 进给率指令z feedrate not used 定义 Z 进给率指令circle angle not used 圆周角度x coordinate = X 定义 X 坐标轴y coordinate = Y 定义 Y 坐标轴z coordinate = Z
7、定义 Z 坐标轴key i = I 定义 X 轴矢量 I 键key j = J 定义 Y 轴矢量 J 键key k = K 定义 Z 轴矢量 K 键feedrate = F 定义进给率指令feedrate per revolution = F 定义每转进给率指令spindle = S 定义主轴指令tool number = T 定义刀具指令cycle dwell not used dwell = X 定义暂停时间键值tool length = H 定义刀具长度补偿指令tool radius = D 定义刀具半径补偿指令drill peck depth = Q1 钻孔的啄钻深度drill hol
8、e depth = Z2 定义钻孔深度clearplane = R2 定义安全平面高度message start = MS 定义注释的开始符message end = EM 定义注释的结束符opskip = OP 定义跳段符号radius = R 定义半径 R 键program id = ID 定义程序号azimuth axis = B 在多轴加工中,定义方位轴elevation axis = C 在多轴加工中,定义仰角轴3rd rotation axis = null 在多轴加工中,定义第三旋转轴leader not used x vector not used y vector not u
9、sed z vector not used error not used end define = 定义指令值= define codes rapid = G1 0 = 快速点定位linear = G1 1 = 直线插补circle cw = G1 2 = 顺圆插补circle ccw = G1 3 = 逆圆插补名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 10 页 - - - - - - - - - dwell = G6 4 = 暂停、准确停止xy plane = G
10、3 17 = XY 平面zy plane = G3 19 = YZ 平面xz plane = G3 18 = ZX 平面compensation off = G2 40 = 取消刀具半径补偿compensation on left = G2 41 = 刀具半径左补偿compensation on right = G2 42 = 刀具半径右补偿imperial data = G4 20 = 英寸输入metric data = G4 21 = 毫米输入absolute data = G5 90 = 指定绝对坐标编程incremental data = G5 91 = 指定增量坐标编程from =
11、G3 54 = 制定工作坐标系feedrate per minute not used = 每分钟进给feedrate per revolution not used = 每转进给spindle rpm not used constant surface speed not used drill = G4 81 = 钻孔循环锪镗循环break chip = G4 82 = 钻孔循环或反镗循环deep drill = G4 83 = 深孔钻循环tap = G4 84 = 攻丝循环bore 1 = G4 85 = 镗孔循环bore 2 = G4 86 = 镗孔循环bore 3 = G4 87 =
12、背镗循环bore 4 = G4 88 = 镗孔循环bore 5 = G4 89 = 镗孔循环end of drill = G4 80 = 固定循环取消macro start not used = 宏程序模态调用macro end not used = 宏程序模态调用取消macro call not used = 宏程序调用cycle retract = G6 99 = 固定循环返回到R点tool length offset = G3 43 = 正向刀具长度补偿spline not used = spline 插补方式stop = M1 0 = 程序停止opt stop = M1 1 = 选择停
13、止spindle on cw = M1 3 = 主轴正转spindle on ccw = M1 4 = 主轴逆转spindle off = M1 5 = 主轴停止spin coolant on cw = M1 13 spin coolant on ccw = M1 14 spin coolant off = M1 5 = 冷却液关change tool = M1 6 = 自动换刀coolant on mist = M1 7 = 雾状冷却液coolant on = M1 8 = 冷却液开coolant on flood = M1 8 = 冷却液开(喷出)coolant off = M1 9 =
14、冷却液关clamp on not used clamp off not used end of tape = M1 2 = 程序结束end of prog = M1 30 = 程序结束gear range 1 not used gear range 2 not used gear range 3 not used constant contour speed not used constant contour speed 2 not used word drill not used 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - -
15、 名师精心整理 - - - - - - - 第 3 页,共 10 页 - - - - - - - - - word break chip not used word deep not used word tap not used word bore 1 not used word bore 2 not used word bore 3 not used word bore 4 not used word bore 5 not used coolant on tap not used rigid tap not used = 刚性攻丝helical drill not used helical
16、retract drill not used end define = 定义变量= print header = Delcam Postprocessor = 定义打印标题machine name = Fanuc6m version 1.2 = 机器名point = . = 小数点zero = 0 = 零tape headers = 1 = 纸带标题(integer 6 、integer 7) :定义coolant output(冷却液输出)integer 6 = 2 = 定义冷却液开(M07、M08)的输出方式,此变量共有三个选项0:在后处理时遇到相关指令时输出;1:在下一段中单独输出;2、
17、在下一段中和坐标移动一起输出。integer 7 = 1 = 定义冷却液关(M09)的输出方式,此变量共有三个选项0:在后处理时遇到相关指令时输出;1:在下一段中单独输出;2、在下一段中和坐标移动一起输出。(integer 10、integer 11、integer 12、integer 13) :定义spindle output(主轴输出)integer 10 = 2 = 定义主轴开(M03、M04)的输出方式,此变量共有三个选项0:在后处理时遇到主轴开指令时输出;1:在下一段中单独输出;2、在下一段中和坐标移动一起输出。integer 11 = 1 = 定义主轴关( M05)的输出方式,此
18、变量共有二个选项0:在遇到主轴关指令时不输出S;1:在遇到主轴关指令时输出S0。integer 12 = 1 = 定义 M 代码的输出方式, 此变量共有二个选项 0:在遇到主轴相关指令时不输出M;1:在遇到主轴相关指令时输出M。tool reset coordinates = 2 = 定义刀具复位后 (M06 后)的坐标处理方式,有 1、2、3、4 四个选项,请注意这四个选项的刀具补偿的区别:1 、2、3 、4、cycle output = 1 = 定义循环指令(G80G89)的输出方式,此名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - -
19、 - - 名师精心整理 - - - - - - - 第 4 页,共 10 页 - - - - - - - - - 变量共有两个选项0:不输出循环移动指令;1、输出循环指令(默认值为G81) 。(integer 20、integer 26、full circle) :定义circle output(圆弧输出)integer 20 = 1 = 定义圆弧( M02 、M03)的输出坐标,此变量共有两个选项0:不输出圆弧的X、Y 坐标; 1:输出圆弧的X、Y 坐标。block start = 1 = 定义程序段的开始段号block increment = 1 = 定义程序段号的增量split move
20、 = 0 integer 26 = 1 = 定义圆弧( M02、M03)的输出,此变量共有两个选项0:不输出圆弧指令;1、输出圆弧指令,如果选择0,那么在后处理时遇到有圆弧的地方,系统将这个圆弧打断成若干条直线段输出。program id start = 100 = 定义程序起始号integer 34 = 3 integer 35 = 1 integer 36 = 1 integer 37 = 2 rapid feed code = 0 = 共有两个选项0:在快速移动时不输出进给率; 1:在快速移动时输出进给率(需要在快速移动中定义F)。maximum block number = 0 max
21、imum tape blocks = 0 minimum tape blocks = 0 segment type = 0 counter start = 0 counter increment = 0 tape split retract distance = -999 multiaxis coordinate transform = true = 定义机床是否支持多轴联动,true:支持; false:不支持message output = false block order = true tlo output = true = 是否正常输出刀具长度(半径)补偿,true:输出;false
22、:不输出。tape split on tool change = false full circle = true = true :整圆输出;false:不做整圆输出。incremental centre = true go home output = false use partid = true = 是否使用自定义partid,true:使用; false:不使用use progid = true = 是否使用自定义progid,true:使用; false:不使用spindle x motion = false = 定义主轴运动方向,true: X 方向;false: NOX 方向。sp
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年PowerMILL后处理修改教程 2022 PowerMILL 处理 修改 教程
限制150内