|  | 
 
| 本帖最后由 adidas* 于 2018-3-7 22:06 编辑 
 希望对大家有帮助 可以自己更改更适合自己用的机床圆弧输出用的是CR,可以自己更改用IJK   软件里的COMCAD命令没有被关掉 有不少教程要求关掉 才能输出圆弧
 如果cycle832(0.01,0,1)输出的中间是0 二不是1 2 3 那么要更改PB_CMD_check_block_CYCLE832命令里的加工方法和你NX软件里的一致
 
 
 if { [info exists mom_cutmthd_libref] } {
 switch $mom_cutmthd_libref {
 OPD0_00021 { set mom_siemens_method "HSM ROUGH MILLING"}
 OPD0_00022 { set mom_siemens_method "HSM SEMI FINISH MILLING"}
 OPD0_00023 { set mom_siemens_method "HSM FINISH MILLING"}
 default    { set mom_siemens_method "DESELECTION"}
 }
 
 if {[string match "V7" $sinumerik_version]} {
 set cycle832_v832 1
 switch $mom_siemens_method {
 "HSM ROUGH MILLING"        { set cycle832_tolm 3 }
 "HSM SEMI FINISH MILLING"  { set cycle832_tolm 2 }
 "HSM FINISH MILLING"       { set cycle832_tolm 1 }
 default                    { set cycle832_tolm 0 }
 }
 | 
评分
查看全部评分
 |