Cutting time or processing time must be calculated when formulating the fixed working hours of a certain process;
The program execution time can be measured with a stopwatch, or by adding a macro statement (macro command) to the machining program.
The method of adding a macro statement (macro command) to measure the maneuvering time is as follows:
Add a program segment "#3001=0;" immediately under the program name of the processing program (the function of this segment is to clear the value in the micro timer);
Add a program segment "#190=#3001;" immediately before the program end segment of the processing program (the function of this segment is to transfer the real-time value in the micro-timer to a public variable);
Example:
like
O1111;
#3001=0;
.....
Processing procedure
…
#190=#3001;
M30
In this way, the processing time is in parameter #190.
The data displayed in #190 (or other public variable numbers before the equal sign) on the corresponding page of the system panel after the execution of the processing program is the maneuvering time (in milliseconds) for executing the processing program.





