Hello Guest it is April 26, 2024, 02:57:45 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Graham Waterworth

1241
PoKeys / Re: Feed & Speed Over Ride
« on: January 27, 2010, 11:53:15 AM »
Have a look at this link, this how Hood made his pokeys pendant.

Graham

http://www.machsupport.com/forum/index.php/topic,11817.msg75561.html#msg75561

1242
If you are milling the holes to size you need to use one type of program if you are boring with a boring bar then another is needed :-

To mill the holes.

(USING 10mm CUTTER)

G21 G40 G00 G49 G54
M6 T1
S7000 M3
G90X107.5 Y-35.
G43 H1 Z6.
M98 P1001
X107.5 Y35.
M98 P1001
X-107.5 Y35.
M98 P1001
(Etc......)
M30

O1001
G90Z1.
G91G01 Z-5. F50.
X4.25 F100.
G03 I-4.25 F125.
G01X-4.25
G00 G90 Z1.
M99

(USING A 18.5 DIA BORING BAR)

G21 G40 G00 G99 G54
M6 T1
S7000 M3
G90G43H1Z6.
X107.5Y-35.
G81 G98 Z-5. R1. F25.
X107.5 Y35.
X-107.5 Y35.
(Etc......)
G80
M30

Or something like this

Graham

1243
Mach3 is a different system, will your original code work on a Haas, Fanuc, Anilam, Meldas, Heidenhein, Sinumerik no it will not so why should it run an Mach3 and why is your old control doing it the right way and every other doing it wrong, simple answer is they are not, they are all g-code controls and all produce a part.  They just use a different dialect with custom functions.  :)

Graham

1244
OK, do it like this

O20
G91
M98 P21 L11
G1 Y.0581 F20.
Y.015
N4 G2 G17 J-.0731 F20.
N5 G1 Y.005 F20.
N6 G2 G17 J-.0781 F20.
N7 G0 Y-.0781
G0 Z2.2
M30

O21
G1 Y.0581 F20.
G2 G17 J-.0581 Z-.2 F6.
G1 Y-.0581
M99

Graham

1245
Try it like this

O20
G91
M98 P21 L11
G0 Z2.2
M30

O21
G1 Y.0581 F20.
G2 G17 J-.0581 Z-.2 F6.
N3 G1Y.015 F20.
N4 G2 G17 J-.0731 F20.
N5 G1 Y.005 F20.
N6 G2 G17 J-.0781 F20.
N7 G0 Y-.0781
M99

Graham

1246
The other option is to make tool holders that hold the tools at 30 degrees and keep the tool post at zero.

Graham

1247
General Mach Discussion / Re: What is a "MODERATOR"?
« on: January 15, 2010, 06:18:32 PM »
 ;D

Graham

1248
General Mach Discussion / Re: What is a "MODERATOR"?
« on: January 14, 2010, 06:28:00 PM »
The original idea was to have moderators from all time zones so we had 24 hour coverage.  As we have just about stopped the spammers that used to drive us all mad with there constant bombardment we probably don't need as many, but what the hell it costs nothing to have plenty.

Graham

1249
G-Code, CAD, and CAM discussions / Re: support for touch probes
« on: January 13, 2010, 05:23:20 PM »
No, Mach3 has to have a file loaded into memory, Mach3 has no limit on file size.

Graham

1250
G-Code, CAD, and CAM discussions / Re: support for touch probes
« on: January 13, 2010, 04:44:28 PM »
G31 z-10 f25. will move the z axis minus 10mm unless it senses the probe touch something. At the touch point it stops and you can take a reading and do what ever you want with the data by calling a M code.

Graham