Hello Guest it is April 26, 2024, 06:23:29 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

1181
General Mach Discussion / Re: Mach 3 putting in offsets? HELP!
« on: April 07, 2010, 07:29:45 PM »
Half you problem is that the code is in incremental, if it starts in the wrong place it will remain in the wrong place until an absolute command is issued.

Have you a picture of what you are trying to machine?

Graham

1182
General Mach Discussion / Re: conventional vs. climb
« on: April 07, 2010, 04:49:00 AM »
I am not sure what you are asking but if you reverse the direction you will reverse the thread e.g. right hand would become left hand.

G02 travelling Z zero to Z minus will produce a right hand thread (clockwise helix)

G03 travelling Z zero to Z minus will produce a left hand thread (anti clockwise helix)

Graham

1183
General Mach Discussion / Re: help with program issue
« on: April 04, 2010, 02:55:29 PM »
In your macro you can check the input with something like this

If IsActive(Input1) Then
  msg("Clamped")
Else
  Code "M30"
End If

Or if this is something that needs to happen all the time then you can add it to the Cycle Start button script.

If IsActive(Input1) Then DoButton (0)

Graham

1184
G-Code, CAD, and CAM discussions / Re: PROBLEMS with G00 and G01.
« on: April 03, 2010, 03:01:57 PM »
Not always the case,  when you run a G00 command there is no CV blending so the movement is stopped after every move command.

Graham

1185
General Mach Discussion / Re: Turn Eccentric Wizard
« on: April 01, 2010, 04:10:52 AM »
Daniel,

If I was cutting a square on and eccentric peg then I would use the chuck as a rotary indexer and mill the flats, why make life hard  :D

But the square code is doable too.

Graham

1186
General Mach Discussion / Re: Turn Eccentric Wizard
« on: April 01, 2010, 03:59:20 AM »
This is why you need a Y axis

Graham

1187
General Mach Discussion / Re: Turn Eccentric Wizard
« on: March 31, 2010, 06:16:06 PM »
The code is the easy bit the hard bit is getting a machine that can follow the code instructions,  you need the X or Y axis to be in sync with the spindle.  Then the code is generated using Sin and Cos of a selected arc length on a offset centre point, the Z movement is then divided into the number of cords.

If you make the conforming machine I will write you the code.

Graham

1188
General Mach Discussion / Re: Turn Eccentric Wizard
« on: March 31, 2010, 03:15:45 PM »
Clive,

if its a repeat job bore a offset hole in a round billet and split it through the thick side then you can hold it in the three jaw.

Graham

1189
General Mach Discussion / Re: Turn Eccentric Wizard
« on: March 31, 2010, 08:41:44 AM »
You would need a lathe with a Y axis for a start so you could maintain the tool centre height.

Graham

1190
Post Processors / Re: Solidcam 2006 Rev10 to mach2-mach3 post pro
« on: March 31, 2010, 08:30:38 AM »
Mach3 has no looping macro commands.

Graham