
11-13-2008, 12:23 PM
|
| | | Join Date: Apr 2007 Location: USA
Posts: 148
| |
Originally Posted by fokusco I need to program a contour that steps down in the Z axis .1" after each contour pass... I'm basically contouring a plus (+) sign... What is the best way to do this... The pocket mill canned cycle (using G150... is this wrong or right) wants to take the long way around by clearing out the center wich does not need done and if I program and island in the middle the cutter will still cut out what I need by making long unnessesary passes in either the X or Y axis, wichever I specify... All i want is for it to travel on the outside of my + and step down until I reach a depth of 1"! I know this should not be difficult but, still being new to this, there are stilll alot of things I dont know how to do.. Sorry to pester you guys on the forum with stupid Q's again but you guys are the only help I have since no one else knows anything about my machine where I work.... THANKS! |
The easiest way to program this would be to use a cad/cam system. Lacking that you can always hand code it out, basically it all sounds like straight line machining ie G01. Once you hand code out the contour for one complete level make that your sub program, and call it however many times you need to until you reach the depth that you want in your main program. It is easiest if you write the main program in incremental mode ie G91, that way you call it out say 10 times at .100 each pass to end up 1" deep. Make sure you cancel G91 at the end of the program with a G90, that way the next program you run won't be run in incremental mode. Both G90 and G91 are modal. I recomend you get a book called programming techniques and tips by Peter Smid. It will become your bible for figuring out some pretty clever ways of doing things. Hope this helps. |