Hello Guest it is April 24, 2024, 03:47:59 PM

Author Topic: Visualmill 5.0 code for peck drilling  (Read 4873 times)

0 Members and 1 Guest are viewing this topic.

Offline TT350

*
  •  113 113
    • View Profile
Visualmill 5.0 code for peck drilling
« on: December 03, 2007, 10:42:06 PM »
Hi guys

I had a row of holes to drill today and wanted try
some “deep hole drilling” in VisualMill 5.0

Mach 3 didn’t drill the holes for some reason here
is the code that VM posted.

 (Deep Drill )
M5M6 T2
G43 H2
M03 S1750
Z0.2109
X2.7500 Y-2.5000
G83 X2.7500 Y-2.5000 Z-1.3768 R-0.15 L0.0 Q0.25 F20.0
G80
G00 Z0.7500
G83 X8.2500 Y-2.5000 Z-1.3768 R-0.15 L0.0 Q0.25 F20.0
G80
G00 Z0.7500
G83 X13.7500 Y-2.5000 Z-1.3768 R-0.15 L0.0 Q0.25 F20.0
G80
G00 Z0.7500
G00 Z1
M5 M9
M30

It should have took .250 out of the hole on each pass
in the hole until max depth.
Instead it went to each hole and paused and moved to the next hole.

I modified the code and it peck drilled the holes.
This is the code I ended up using.

(Deep Drill )
M5M6 T2
G43 H2
M03 S1750
Z0.2109
X2.7500 Y-2.5000
G83 X2.7500 Y-2.5000 Z-1.3768 F20.0
G80
G00 Z0.7500
G83 X8.2500 Y-2.5000 Z-1.3768 F20.0
G80
G00 Z0.7500
G83 X13.7500 Y-2.5000 Z-1.3768 F20.0
G80
G00 Z0.7500
G00 Z1
M5 M9
M30

I know that G83 is a canned cycle for peck drilling but
what should the code look like if you wanted to choose
the amount that it takes on each peck.

I have found other bugs in the VM post processor for Mach3 and with the help of Bryan and the guys at VM
I have fixed a few as I run across then.

Thanks for your time
Chris   
 

Offline Graham Waterworth

*
  • *
  •  2,673 2,673
  • Yorkshire Dales, England
    • View Profile
Re: Visualmill 5.0 code for peck drilling
« Reply #1 on: December 05, 2007, 06:20:18 PM »
G83 *********.xx Yyy.yy Zzz.zz Q.250 F20.

Q is peck depth.

Graham.
Without engineers the world stops

Offline TT350

*
  •  113 113
    • View Profile
Re: Visualmill 5.0 code for peck drilling
« Reply #2 on: December 05, 2007, 09:42:03 PM »
I found your post by doing a search and fix the VM bug in the post, thanks for the reply!

http://www.machsupport.com/forum/index.php/topic,838.0.html


Chris