Hello Guest it is May 04, 2024, 02:20:18 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

1881
G-Code, CAD, and CAM discussions / Re: Subroutines
« on: October 23, 2007, 05:49:05 PM »
G90 is absolute movements.

G91 is move incremental.

G43 is use height offsets, only if a Hnn is commanded.

Graham.


1882
Its not as easy as it looks, you need to know a lot about what is coming up in the next moves, e.g. look ahead. You can't do this with a macro or g-code.

Also what if the rad is too big to fit in the V.

I once asked Art for auto rad and auto chamfer,  I think he is still laughing about it now.

Graham.

1883
G-Code, CAD, and CAM discussions / Re: Subroutines
« on: October 23, 2007, 04:32:30 PM »
Like this :-

O0001 (MAIN PROGRAM)
G00 G90 G43 X0 Y0 Z1.  Etc.
Z-.1
M98 P0002
Z-.2
M98 P0002
Z-.3
M98 P0002
Etc.
M30

O0002 (SUB PROGRAM)
G01 X-1. F10.
Y-1.
X0
Y0
M99

Graham.

1884
VB and the development of wizards / Re: phantom code
« on: October 21, 2007, 04:01:36 PM »
Have you tried it with a feed rate in the line "G91 G01 X-5. F10."

Graham.

1885
What G40 question, I must have missed it or lost track of it.

Graham.

1886
G-Code, CAD, and CAM discussions / Re: Newbie Question Gcode
« on: October 17, 2007, 04:16:23 AM »
Hi Olf20

G00, G01, G02, G03 are known as modal, they are in effect until another is commanded or a G80 is commanded.

Rapid setting are set by the motor tuning.

Graham.

1887
General Mach Discussion / Re: Strange toolpath
« on: October 15, 2007, 11:31:12 AM »
I think it is the fact that you are using #9001 and above, these are normally used by the system and may be getting corrupted. Art gives no guarantee that the # numbers work in all conditions.

You can use the G52 with # numbers

E.g.

#1=100.125
#2=120.000
G52 X#1 Y#2

I would keep away from the 9000+ numbers

Graham.

1888
Are you wanting to put a rad on the edge of the bore or on the grooves?

Graham.

1889
General Mach Discussion / Re: Strange toolpath
« on: October 15, 2007, 11:01:37 AM »
OK, lets try it this way.

Graham.

%

G21 G17 G90 G40 G61
G00 Z200
X0 Y0
M3
G04 P3
Z10
G52 X37.25 Y125.50
M98 P1001 L1
G00 Z10
G52 X100.75 Y125.50
M98 P1001 L1
G00 Z200
X0 Y0
M5
M30

O1001
X0 Y0
Z2.
G01 Z-1 F120
G41 P1. (change this for your cutter dia)
X0 Y5.15
X-6.95 Y5.15
G03 X-9.45 Y2.65 J-2.50
G01 X-8.44 Y-2.65
G03 X-5.98 Y-5.15 I2.5
G01 X5.98 Y-5.15
G03 X8.44 Y-3.08 J2.5
G01 X9.45 Y2.65
G03 X6.95 Y5.15 I-2.5
G01 X0 Y5.15
X0 Y0
G40
G00 Z2.

X-12.5 Y0
G01 Z-1
G41 P1. (change this for your cutter dia)
X-12.5 Y1.6
G03 X-12.5 Y-1.6 J-1.6
G03 X-12.5 Y1.6 J1.6
G40
G00 Z2.

X12.5 Y0
G01 Z-1 F120
G41 P1. (change this for your cutter dia)
X12.50 Y1.6
G03 X12.5 Y-1.6 J-1.6
G03 X12.5 Y1.6 J1.6
G40
G00 Z2.

G52 X0 Y0
M99

%

1890
General Mach Discussion / Re: Strange toolpath
« on: October 15, 2007, 08:56:17 AM »
Try this version, but change the tool dias in the marked lines.

Graham.

%

(#9001 = QUOTA OFFSET ASSE X )
(#9002 = QUOTA OFFSET ASSE Y )

G20 G17 G90 G40 G61
G00 Z200
X0 Y0
M3
G04 P3
Z10
#9001=37.25
#9002=125.50
M98 P1001 L1
G00 Z10
#9001=100.75
#9002=125.50
M98 P1001 L1
G00 Z200
X0 Y0
M5
M30

O1001
G00 Z10
X[#9001] Y[#9002]
Z2
G01 Z-1 F120

G41 P1. (change this for your cutter dia)

X[#9001+0.00] Y[#9002+5.15]
X[#9001-6.95] Y[#9002+5.15]
G03 X[#9001-9.45] Y[#9002+2.65] J-2.50
G01 X[#9001-8.44] Y[#9002-2.65]
G03 X[#9001-5.98] Y[#9002-5.15] I2.5
G01 X[#9001+5.98] Y[#9002-5.15]
G03 X[#9001+8.44] Y[#9002-3.08] J2.5
G01 X[#9001+9.45] Y[#9002+2.65]
G03 X[#9001+6.95] Y[#9002+5.15] I-2.5
G01 X[#9001+0.00] Y[#9002+5.15]
X[#9001+0.00] Y[#9002+0.00]
G40
G00 Z2
X[#9001-12.5] Y[#9002+0.00]
G01 Z-1

G41 P1. (change this for your cutter dia)

X[#9001-12.5] Y[#9002+1.6]
G03 X[#9001-12.5] Y[#9002-1.6] J-1.6
G03 X[#9001-12.5] Y[#9002+1.6] J1.6
G40
G00 Z2
X[#9001+12.5] Y[#9002+0.00]
G01 Z-1 F120

G41 P1. (change this for your cutter dia)

X[#9001+12.50] Y[#9002+1.6]
G03 X[#9001+12.50] Y[#9002-1.6] J-1.6
G03 X[#9001+12.50] Y[#9002+1.6] J1.6
G40
G00 Z10
M99

%