![]() | |
| Home Page | Mark Forums Read | Today's Posts | My Replies | Classifieds | Reviews | Photo Gallery | Web Links | Share Files | Advertise With Us | Ad List |
| |||||||
| G-Code Programing Discuss G-code programing and problems here! |
| This forum is sponsored by: |
![]() |
| | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
| |||
| |||
Just started working at this new place and we're upgrading cutters. We jumped from 12 IPM to 194IPM, Now here's the kicker, Step is .05 from .200, so the guys are having to reprogram all the programs. The way they were doing it was say with a XYIJ and z-.2 then next line z-.4 and so on till the pockets cut thru. Now we are doing .05 depth, and in a 3" plate that's adding a lot of lines and that's a mistake waiting to happen. I know you can use a L word and G91 but can't remember how to do it(been doing CAM for to long ) Can someone give me and example that I can follow that will work on a Fanuc 18i and or a Mazak? Thanks in advance.... |
|
#2
| |||
| |||
| This is quick and dirty but it give an idea to start with. Uses macro B not simple loops. Code: #100=.5(RADIUS) #101=0.01(START DEPTH) #102=-1.5(END DEPTH) #103=-0.05(STEP SIZE) (----------) #104=#101(SET CURRENT DEPTH) (DO A G52 LOCAL WORK OFFSET HERE) (IF YOU WANT TO MAKE A HOLE SOMEPLACE) (OTHER THEN THE CURRENT WORK OFFSET) (ZERO POSITION) G0X#100Y0.0 G0Z[#104+0.1] G1Z#104F200.0 #104=[#104+#103] WHILE [#104 GT #102] DO1 G3I[-#100]Z#104F100.0 #104=[#104+#103] END1 G3I[-#100]Z#102F100.0(LAST STEP) G3I[-#100]F100.0(CLEANUP) G1X0Y0Z[#102+0.01] G0Z[#104+0.1] G52X0Y0 |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| MV 35/40 Helical Interpolation | Millem | General Metal Working Machines | 2 | 12-12-2007 08:54 AM |
| Helical Boring Help | Blosser5 | General Metalwork Discussion | 4 | 11-29-2007 08:03 PM |
| Helical Milling | binzer | GibbsCAM | 3 | 03-30-2007 04:39 PM |
| Helical couplers for $5 !!!!!! | ger21 | DIY-CNC Router Table Machines | 10 | 03-27-2007 03:58 PM |
| G2/g3 Helical In Yz(g19) | leggetmachine | G-Code Programing | 4 | 03-22-2006 10:48 PM |