Hello Guest it is October 31, 2024, 08:59:28 PM

Author Topic: Cannot do g1 with zero feed rate, Block=G1 X0 Y0 Z0.5  (Read 13017 times)

0 Members and 1 Guest are viewing this topic.

Cannot do g1 with zero feed rate, Block=G1 X0 Y0 Z0.5
« on: September 10, 2023, 02:57:24 PM »
Hello,

Im having an issue with a few files that I created in Fusion 360.  It seems to be related to the IJ setting in Machs General Setup window.

Im trying to run this code:

G90 G94 G91.1 G40 G49 G17
G20

M5

T2
G1 X0 Y0 Z0.5


The machine throw this error, Cannot do g1 with zero feed rate, Block=G1 X0 Y0 Z0.5
I have tried setting the Mach 3 to absolute, closing and reopening the file and inc and closing and reopening the file but still see the error either way.

Wouldnt the first line (G91.1) override the default in the match screen anyway? 

Thanks
Re: Cannot do g1 with zero feed rate, Block=G1 X0 Y0 Z0.5
« Reply #1 on: September 10, 2023, 09:46:03 PM »
Change it to...

G1 X0 Y0 Z0.5 F10

Any time you use G1 after that it will move at 10 inches or millimeters per minute. If after that you want to move at a different speed just do another F#
Re: Cannot do g1 with zero feed rate, Block=G1 X0 Y0 Z0.5
« Reply #2 on: September 17, 2023, 02:59:43 PM »
This was it!!  Thank you.  Makes perfect sense.