Hello Guest it is March 28, 2024, 07:23:40 PM

Author Topic: Best way to adjust cutter position in a running program?  (Read 2558 times)

0 Members and 1 Guest are viewing this topic.

Best way to adjust cutter position in a running program?
« on: October 11, 2010, 08:06:54 PM »
I am new to Mach3 and writing Gcode - but like it so far.

My question:
I am milling repeat pieces that have the same x and y profile but have variation in the z height.  I have set up a part fixture to hold my blanks and written the program to home up first and then go to my blank to begin machining.  I am in the absolute coordinate system.  I would like to be able to set my Z position higher than the highest blank I will be using and then lower it to the correct height once I begin machining.  When I pause the program and lower the Z it goes back to the original height.

I'm sure I am missing some basic concept for adjusting the cutter position while in an executing program?

Thanks,
Durl

Offline alenz

*
  •  137 137
    • View Profile
Re: Best way to adjust cutter position in a running program?
« Reply #1 on: October 12, 2010, 01:38:49 AM »
Durl
Try changing offsets. Add a G55 (Offset #2) just ahead of the pause (M00 ?) line. Then reset the Z-DRO. The file will now run at the new Z-offset. At the appropriate place near the file end enter a G54 to return to offset #1 and return to your original Z for the next run.
Note, this will offset the entire file in the Z, i.e., outline cuts will cut deeper into your spoilboard, etc. Not sure if that is what you were asking.
HTH
 Al
Re: Best way to adjust cutter position in a running program?
« Reply #2 on: October 12, 2010, 06:22:04 AM »
have seperate programs for each job
Re: Best way to adjust cutter position in a running program?
« Reply #3 on: October 17, 2010, 11:32:51 PM »
Thanks for the suggestions!