在後處理custom command下新建一個宏命令,取名 PB_CMD_tool_info把下面的文字複製貼上進去儲存。然後在program下的Auto tool change中加入這個宏命令即可刀具名稱,刀具規格尺寸兩行資訊。
global mom_tool_name mom_tool_type
global mom_tool_diameter mom_tool_corner1_radius mom_tool_flute_length
global mom_tool_length
MOM_output_literal "(ToolName=$mom_tool_name)"
MOM_output_literal "(D=[format "%.2f" $mom_tool_diameter] R=[format "%.2f" $mom_tool_corner1_radius] F=[format "%.2f" $mom_tool_flute_length] L=[format "%.2f" $mom_tool_length])"
就這些。
其餘的資訊,比如加工時間等,同樣是建立宏命令,然後追加到程式結尾,宏內容為;
global mom_machine_time
MOM_output_literal "(Total Operation Machine Time : [format "%.2f" $mom_machine_time] min )"
在後處理custom command下新建一個宏命令,取名 PB_CMD_tool_info把下面的文字複製貼上進去儲存。然後在program下的Auto tool change中加入這個宏命令即可刀具名稱,刀具規格尺寸兩行資訊。
global mom_tool_name mom_tool_type
global mom_tool_diameter mom_tool_corner1_radius mom_tool_flute_length
global mom_tool_length
MOM_output_literal "(ToolName=$mom_tool_name)"
MOM_output_literal "(D=[format "%.2f" $mom_tool_diameter] R=[format "%.2f" $mom_tool_corner1_radius] F=[format "%.2f" $mom_tool_flute_length] L=[format "%.2f" $mom_tool_length])"
就這些。
其餘的資訊,比如加工時間等,同樣是建立宏命令,然後追加到程式結尾,宏內容為;
global mom_machine_time
MOM_output_literal "(Total Operation Machine Time : [format "%.2f" $mom_machine_time] min )"