如何将后处理出来的文件指定到默认文件夹
好酷屋教程网小编为您收集和整理了如何将后处理出来的文件指定到默认文件夹的相关教程:作者:陈克荣 审校:俞文清适用版本:UG/PostBuilder所有版本如何在CAM后处理时自动将处理出来的数控程序放到指定文件夹下?可以使用下面
作者:陈克荣 审校:俞文清
适用版本:UG / Post Builder所有版本
如何在CAM后处理时 自动将处理出来的数控程序放到指定文件夹下?
可以使用下面的custom command来完成这个功能#======================================================
Proc PB_CMD_set_default_ptp_directory{ }{
#=======================================================
global ptp_file_name mom_output_file_directory
mom_output_file_basename
mom_output_file_suffix
set mom_output_file_directory “D:\ncprogram\”
MOM_output_literal “This is the output dir $mom_output_file_directory”
Set ptp_file_name
“${mom_output_file_directory}${mom_output_file_basename}.${mom_output_file_suffix}”
MOM_close_output_file $ptp_file_name
}
创建一个custom command (.tcl)文件,并且把这个文件import 到Postbuild里面,如图1所示。
图1
然后把它放置到所有程序组的最后“End of Programm”事件处,如图2所示。图2
这样在执行后处理的时候,处理出来的数控加工文件就会被自动放在规定的目录文件夹中。
以上就是好酷屋教程网小编为您收集和整理的如何将后处理出来的文件指定到默认文件夹相关内容,如果对您有帮助,请帮忙分享这篇文章^_^
本文来源: https://www.haoku5.com/IT/6440e0216502388e040c24be.html
相关推荐