jmelson wrote:Frederik wrote:Hello John,
I think it may be nice to know how long a milling takes before I begin.
Click on File / Properties in Axis, and it gives an estimate that is usually pretty
accurate.
Jon
It can be close when the moves are long and the file is short. The splash screen when ran is within a second or two of the properties estimate. However the following G code file reports a run time of 1 second when you look at properties to run but takes 21 times longer to run on my sim as it never reaches the requested speed due to the maximum acceleration of the config and the short moves. This is a typical of a CAM generated 3-D g code with millions of tiny moves.
G20 F150
G0 X0 Y0 Z0
o<100> REPEAT [1000]
G1 X0.0005 Y-0.0005 Z-0.0005
X0 Y0 Z0
o<100> ENDREPEAT
M2
John