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

1051
General Mach Discussion / Re: need tech support will pay.
« on: August 29, 2011, 05:04:26 AM »
Some photos of your machines spindle head might help us to determine what you do and do not have.

Graham

1052
G-Code, CAD, and CAM discussions / Re: help cant load gcode
« on: August 13, 2011, 05:19:01 PM »
There is a drop down on the Mach3 open file window, click it and select .TXT

Graham

1053
Share Your GCode / Re: Dragon GCode
« on: July 25, 2011, 03:42:44 AM »
Download this program and run the code through it with the scale set at 0.9.

http://www.machsupport.com/forum/index.php/topic,2893.msg39920.html#msg39920

Graham

1054
Share Your GCode / Re: Dragon GCode
« on: July 24, 2011, 04:45:07 PM »
On the main screen you have scale entries next to the position dro,s click one of them and enter 0.9 and hit enter do this on both X & Y axis.

Graham

1055
G-Code, CAD, and CAM discussions / Re: HELP! Which CAM ?
« on: July 14, 2011, 10:25:37 AM »
SolidCAM is the product that integrates with Solidworks so that would be a good starting point.

Graham

1056
To do a simple loop you can do this :-

%
O0001 (MAIN PROGRAM)

G21 G40 G80 (STANDARD SETUP LINES, METRIC, CLEAR OFFSETS, CANCEL CANNED CYCLES)

N1 (TOOL 1)
G54 (SELECT FIXTURE OFFSET 1)
T1 M6 (SELECT TOOL 1)
G00 G90 G43 X0 Y0 Z25. H1 S2000 M3 (RAPID 3 AXIS MOVE TO START POINT IN ABSOLUTE AND START SPINDLE)
Z1. (RAPID 1MM ABOVE JOB)
G01  Z0  F150. (FEED TO TOP OF JOB)
X25. F200. (FEED OUT TO 25MM)
M98 P0002 L20 (CALL SUB PROGRAM O0002 20 TIMES)
G00 G90 X0 Y0 (RAPID TO CENTRE OF CIRCLE IN ABSOLUTE MODE)
Z0 (RAPID CLEAR OF JOB)
M30

O0002 (SUB PROGRAM)
(THIS SUB IS CALLED 20 TIMES FROM MAIN PROGRAM)
(BECAUSE IT IS IN INC MODE THE TOOL WILL MOVE Z-1MM EACH PASS AND CREATE)
(A HOLE 50MM DIA + TOOL DIA TO A DEPTH OF 20MM)
G91 (CHANGE TO INCREMENTAL)
G01 Z-1. F50. (FEED DOWN 1MM)
G03 I-25. F150. (MOVE IN A CCW CIRCLE)
M99
%

Once all the remarks are removed the code is very compact and easily changed to alter the bore size.

One thing to remember is that the L command has a range of 0 to 99.

Graham

1057
Hi Deano,

what is it you want to know, give me a clue as to what you want to do and I will try and explain it in simple terms, to write a whole document would take way too long but snippets of code I can do.

Graham

1058
G-Code, CAD, and CAM discussions / Re: G Code Basics
« on: July 10, 2011, 01:17:00 PM »
Post your program here and lets see if we can work out your problem

Graham

1059
G-Code, CAD, and CAM discussions / Re: PLEASE HELP
« on: June 20, 2011, 04:57:28 AM »
what size cutters have you got and where is your datum point?

1060
General Mach Discussion / Re: I Keep Breaking Engraving Bits....
« on: May 08, 2011, 05:43:33 AM »
In hard materials you need to be above 20,000 rpm and the feed should be no more than 1/4 the tip dia per rev and depth of cut 1/3 tip dia.

I have had good results based on this but the machines are also very rigid so only a guide.

Graham