Hello Guest it is May 03, 2024, 04:00:55 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

1121
G-Code, CAD, and CAM discussions / Re: Rhinocam vs mach3
« on: November 01, 2010, 06:16:02 AM »
In what way is the part different, size, shape, ?

1122
G-Code, CAD, and CAM discussions / Re: G code
« on: November 01, 2010, 06:13:49 AM »
No, as there is no way to flush the current move from the buffer and do a restart from the current position.

Graham

1123
G-Code, CAD, and CAM discussions / Re: Free cnc simulator ....
« on: October 25, 2010, 02:00:39 PM »
How odd, now I cant get back to it ether.

Graham

1124
Finished Screens / Re: Profile Shapes Wizard
« on: October 14, 2010, 05:53:12 AM »
Thanks Scott for the fixed program.

Graham

1125
G-Code, CAD, and CAM discussions / Re: G41 Offset being ignored
« on: October 10, 2010, 05:29:30 PM »
I have to admit that your test file did not work as expected, but after a few changes it worked better.

%
G21 G90 G54 G80
G52 X0 Y 0
F500
#1=-.1
#11=-.1  ( Z Step Depth )
#2=0
#3=20    ( Part Offset )
#4= 2     ( Number of Z steps)
#5= 3     ( Number of Parts on X axis )
#6=1      ( Parts Counter per setup)
G0X0Y0
M98 P2 L#5
G40
Z2.000
X0Y0
G52 X0 Y0
G0 X0Y0
T0 M6
M30
(% removed)
o02
T#6 M6
#1=-.1
Z2.000
G40 X0Y0
G52  X#2
G0 X0 Y0
#2=[#2+#3]
M98 P3 L#4
#6=[#6+1]
m99 (added this)
(% removed)

o03
G41 P.5
G1 X5 Y-1 Z#1
#1=[#1+#11]
G1 X5 Y5
X-5 Y5
X-5 Y-5
X5 Y-5
X5 Y-1.5 Z#1
Y-1
m99
%

Graham

1126
G-Code, CAD, and CAM discussions / Re: G41 Offset being ignored
« on: October 10, 2010, 02:20:38 PM »
All I can say is the code below works on my mill and simulates OK on screen.

Graham

1127
depends where you live, in the UK we would take it to a engineering tool makers or re-grinders.

Graham

1128
Get the tool sharpened, it may be causing excess load on the drives and stalling them.

Graham
 

1129
General Mach Discussion / Re: Inaccurate Dimensions
« on: October 10, 2010, 09:42:56 AM »
If you cut a circle 5 21/32 dia what is the error?

Graham

1130
G-Code, CAD, and CAM discussions / Re: G41 Offset being ignored
« on: October 10, 2010, 09:27:32 AM »
Hi Chris,

the tool path that you have shown is flawed, it will cut into the side of the hole on entry and exit, this is due to the fact that you are trying to apply the G41 comp into a sharp corner, this can be resolved in one of two ways you can fillet the corners with 3.2mm rads or you move the start point into the centre of one of the arcs or flats then all will work as it should.  G41 has problems but if you follow the rules it is fine and it will work with subs.

V4 uses tool compensation type C and solves all these problems but that is still some time away.

Graham