Hello Guest it is April 24, 2024, 05:39:54 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

1761
G-Code, CAD, and CAM discussions / Re: DFX to G Code
« on: January 10, 2008, 02:30:54 PM »
Click 'Additional Options' at the bottom left of the reply screen.

Graham.

1762
General Mach Discussion / Re: Tool Change
« on: January 03, 2008, 04:45:55 PM »
I do not see the big problem in entering 3 words 'G43 T1 M6' for each tool used, this call sets the height offset and loads the diameter offset ready for use by G41 or G42.

One of the reasons Mach works this way is so that tools can be pre-selected by calling T2, then the tool changer is ready for changing by the M6 command

Graham.

1763
General Mach Discussion / Re: C rotation
« on: January 02, 2008, 07:39:33 PM »
As far as I know you can only have 4 axis displayed at any one time.

Graham.

1764
General Mach Discussion / Re: No toolchange
« on: January 02, 2008, 05:54:55 PM »
Not sure about some parts of your code, e.g. G53 expects a X and Z as a distance from zero return, G28 also expects a X0 and/or Z0. 

This is how I would do the code :-

Graham.

%
(PROGRAM NAME - LOCKNUT GW VERSION)

G21 G40 (units)
G28 X0 Z0 ( home Pos)
G18 (xz plane)
G61 (EXACT STOP)
G80 (Cancel canned cycles)
G95 (feed/rev)

N2 T0202 (TOOL - 2 OFFSET - 7)
(N151.2-200.5E  INSERT - N151.2-200-5E)
G54 G00 G90 G43 X12.95 Z10. M8
G97 S450 M3
G1 X8.95 F.15
X-.722
Z12.
G0 X-.4
Z11.
G1 Z10.
X7.35
G3 X7.95 Z9.7 K-.3
G1 Z.4
X9.95
G0 X10.95
Z2.471
G1 X5.528
G0 X10.95
Z.6
G1 X4.82
G0 X10.95
X11.95
Z.4
G1 X7.95
X4.42
G0 X11.95
Z5.756
X10.778
G1 X7.95 Z4.342
G3 X7.698 Z4.098 I-.3
G2 X4.612 Z1.649 I2.201 K-3.098
G3 X4.42 Z1.476 I-.296 K.051
G1 Z.4
X4.62 Z.5
G0 X11.95
X50. Z50. M9
M5
M1

N19 T1919 (TOOL - 19 OFFSET - 19)
(2SD4 SLOT BORE  INSERT - 2SD4 SLOT BORE)
G54 G00 G90 G43 X5.02 Z13.4 M8
G97 S450 M3
G1 Z12.4 F.05
Z6.05
Z10.05
G0 Z13.4
X5.94
G1 Z12.4
Z6.05
Z10.05
G0 Z10.707
X8.754
G1 X7.34 Z10.
X7.14
G2 X6.94 Z9.9 K-.1
G1 Z6.
X4.1
Z3.2
Z8.2
G00 X12. (ADDED THIS LINE)
Z11.
X50. Z50. M9
M5
M1

N2 T0202(TOOL - 2 OFFSET - 7)
(N151.2-200.5E  INSERT - N151.2-200-5E)
G54 G00 G90 G43 X10.05 Z1.4 M8
G97 S450 M3
X8.42
G1 X-.4 F.05
G0 X8.42
X10.05
G00 X50. Z50. M9
G28 X0 Z0
M5
M30
%


1765
General Mach Discussion / Re: No toolchange
« on: January 02, 2008, 03:43:32 AM »
At the end of each tool, after it rapids to tool change position insert Tnn00, this cancels the last tool offset. nn is the tool number in use.

There are a few bugs it turn, this may be one of them.

Graham.

1766
General Mach Discussion / Re: Questions: M3Turn Tool Table
« on: January 01, 2008, 09:24:27 AM »
It would appear there are a few issues with comp and front/rear turrets. Brian has it on his to do list now, so it will get sorted.

Here is a non G42 version for you to try.

%
G20 G40 G00 G90 G94 G61
G43

N1 T0101 (MINI TURN .005 THOU RAD)
G00 X0.19 Z0.1 G97 S1000 M3
G01 Z0. F0.4
X0.321
G03 X0.341 Z-0.009 R0.01
G01 X0.375 Z-0.255
Z-1.005
X0.575
G00 X1. Z1. T0100

M30
%


Graham.

1767
General Mach Discussion / Re: Questions: M3Turn Tool Table
« on: January 01, 2008, 07:58:17 AM »
G96 and G97

Graham.

1768
G-Code, CAD, and CAM discussions / Re: crank shaft
« on: December 31, 2007, 08:55:11 AM »
Ok, this is how I would do the first op.

Datum is on left hand end for X axis.

Y and Z axis are on indexer centre line.

Using a 1/8" end mill.

I would try it on a bit of wood or plastic first.

Material is 1.375 square or round, by length of job plus what ever length you need to clear the indexer with the head.

Graham.

1769
Feature Requests / Re: More axis for master / slave control
« on: December 30, 2007, 03:22:05 PM »
I think you need to re-think your machine or look at using a Fanuc 18Mi they are only 13 axis and $20000.

Graham.

1770
General Mach Discussion / Re: Questions: M3Turn Tool Table
« on: December 30, 2007, 03:12:49 PM »
This is a sample of the code you will need to produce the part.


(USE TOOL OFFSET TABLE)
(SET TIP RAD TO MATCH TOOL)
(SET TIP DIRECTION TO 3)

N1 T0101
G00 X.2 Z.1 G97 S1000 M3
G01 G42 Z0 F0.004
X0.353  F.001
G03 X.368 Z-.007 R.007
G01 X.38 Z-.09 F.002
Z-.25
X.5
G00 G40 X1. Z1. T0100
M30

Graham.