This video will show How to Output Operation information in your postprocessor with TCL.
The tcl code is as follows
-----------------------------------------------------------------------------------------------------------------
output_operation_information.tcl
# This custom command can be use to output operation information
# before tool change like Operation name, Tool diameter, tool number etc..
global mom_operation_name
global mom_tool_name
global mom_tool_number
global mom_tool_diameter
set mom_tool_diameter "[format "%.1f" $mom_tool_diameter]"
MOM_output_literal "(Operation_Name : $mom_operation_name)"
MOM_output_literal "(T$mom_tool_number - $mom_tool_name)"
MOM_output_literal "(Tool_diameter : $mom_tool_diameter)"
Ещё видео!