Hello Guest it is April 19, 2024, 11:24:47 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

2041
You would have to use a relay on the wires and switch it with an output.

Graham.

2042
General Mach Discussion / Re: no step pulse
« on: May 26, 2007, 02:20:04 AM »
Inside the Mach3 folder is a file called SpecialDriver double click it to run and it will install a different Port driver, I had to use it on one of the PC's I tried.

Graham.

2043
General Mach Discussion / Re: User macros that produce problems...
« on: May 24, 2007, 12:52:21 PM »
They work here, here are the 2 macros :-

Try them and let me know.

Graham.

2044
General Mach Discussion / Re: User macros that produce problems...
« on: May 24, 2007, 02:33:53 AM »
OK, try it this way

If IsLoading() then
else
activatesignal(output1)
end if

Graham.

2045
General Mach Discussion / Re: need help! Newbie's problems
« on: May 23, 2007, 12:53:56 PM »
Hi,

you need to set the 'steps per' to 10 times what they are now.

Graham.

2046
General Mach Discussion / Re: User macros that produce problems...
« on: May 23, 2007, 12:48:05 PM »
Are your macros in the profile you are using?

or you can try this.

in your macro type :-

If not IsLoading() then
  activatesignal(output1)
end if

Graham.

2047
Tangent Corner / Re: How fast can I go? Safely...
« on: May 23, 2007, 03:33:58 AM »
Here are some formulas :-

D     = Diameter of cutter
T     = Number of teeth
RPM = Revs per min
F     = Feed
FT   = Feed per tooth
S     = Peripheral speed of cutter
PI    = 3.1416

Cutter speed

S (ft/min) = D*PI*RPM
                ________  = 0.2618D*RPM

                      12

S (m/min) = D*PI*RPM
                  ________
                     1000

Cutter revolutions


RPM = S (ft/min)
          ________
           0.2618D

RPM = S (m/min)*1000
         ______________
               PI*D


Feed per tooth

The suggested feeds are based on 1*dia for axial depth and 0.5 * dia for radial depth of cut.

Cutter dia             Feed per tooth

inch     mm           inch     mm

5/64    2.0           .0003   .0075
1/8      3.0           .0005   .013
1/4      6.0           .0010   .025
1/2    12.0           .0015   .037
1       25.0           .002     .050

FT =           F
             ______
             T*RPM

To increase axial depth to :-

1-1/2 *D reduce feed by approx 30%

2 * D reduce feed by approx 50%

To reduce radial depth to :-

1/4 * D increase feed by 200%

1/8 * D increase feed by 250%

Cutter feed

F = FT*T*RPM

Graham.

2048
Could be vibration, system noise, bad cables.

Graham.

2049
If you have 1.25 in the edge finder dia, what happens if you enter -1.25 in the dia?

Graham.

2050
General Mach Discussion / Re: Newbe questions
« on: May 17, 2007, 02:39:18 PM »
The G-Code determines how big the part is going to be, if you go to toolpath the size of the part is shown in the dro's top right 'program limits'

The datum for the stock is set in the dro' by setting them to zero or by G54 to G59 to set a global datum that can be called at any time.

Graham.