Hello Guest it is May 04, 2024, 05:44:25 PM

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

1631
General Mach Discussion / Re: Why do large files cause lost steps?
« on: April 03, 2008, 04:06:53 AM »
If you go to the Diagnostics, page just above the reset button you can turn off the toolpath.

It should help.

Graham.

1632
G-Code, CAD, and CAM discussions / Re: Help with G-code
« on: April 02, 2008, 04:48:54 AM »
Put this on the last line of your code


This will make the machine home them stop

G28 X0 Y0 Z0 (go to axis home)
M30 (end)

Or

This will make the machine loop for ever or until you select optional stop

M1  (optional stop)
M47 (run from start)

Graham.

1633
Hi,

Machines work from a datum point, this can be set anywhere within its working envelope, you can then work in absolute movements or incremental moves.

Absolute (G90) commands work from the datum point to the commanded position.

Incremental (G91) commands work from the current point and move the commanded amount.

E.G. to move in a 2" square using absolute the code would look like this :-

G20 G40
G00 G90 X0 Y0
G01 X2. F10.
Y-2.
X0
Y0
M30

And the same in incremental :-

G20 G40
G00 G90 X0 Y0
G91
G01 X-2. F10.
Y-2.
X2.
Y2.
M30

I hope this helps.

Graham.

1634
General Mach Discussion / Re: Help!!!!!
« on: April 01, 2008, 07:19:52 PM »
G03X3.2480Y1.0313I-0.1250J0.0000 Q0.1250

Mach dose not support the Q command in G03's

You need to amend the post processor to remove the Q's

Graham.

1635
General Mach Discussion / Re: Feed Rate
« on: April 01, 2008, 07:15:05 PM »
I must agree with Hood, the only safe way is to stop the machine, you can not send it to home as you have no idea what the safe path to home is at any given point.

You could make the spindle switch latch a relay that cuts the power to the spindle and the axis drives.

Graham.

1636
General Mach Discussion / Re: Help!!!!!
« on: March 31, 2008, 07:02:13 PM »
Normally you would output without any options ticked, then you should get a single line of code for each move down in Z.

E.g. 

G03 I-.25 Z-.05
G03 I-.25 Z-.10
Etc.

Graham.

1637
General Mach Discussion / Re: Help!!!!!
« on: March 30, 2008, 06:23:10 AM »
What did you use to create the code and the drawing?

The code is very long for such a simple job.

Graham.

1638
G-Code, CAD, and CAM discussions / Re: Cutting same thread twice!
« on: March 28, 2008, 01:31:09 PM »
What are you using to draw the DXF's ?

There is no threading in ether of your files.

Graham.

1639
General Mach Discussion / Re: Feed Rate
« on: March 28, 2008, 12:59:35 PM »
Not drilling 316 stainless, I guess  ;D

Graham.

1640
General Mach Discussion / Re: Using Mach3 as Lathe Dro
« on: March 28, 2008, 12:55:48 PM »
If I am understanding what you intend to do then Mach3 is not designed to do that, it has no direct feed back from your machine.

Graham.