Hello Guest it is April 18, 2024, 09:43:14 PM

Author Topic: feed rate  (Read 10646 times)

0 Members and 1 Guest are viewing this topic.

Offline ger21

*
  • *
  •  6,295 6,295
    • View Profile
    • The CNC Woodworker
Re: feed rate
« Reply #10 on: September 15, 2010, 06:50:49 PM »
Is that all of it?

Try:

Code("G53G0Z-0.5")
While IsMoving()
sleep 100
Wend

Code("G53G0X24Y1")
While IsMoving()
Sleep 100
Wend
Gerry

2010 Screenset
http://www.thecncwoodworker.com/2010.html

JointCAM Dovetail and Box Joint software
http://www.g-forcecnc.com/jointcam.html
Re: feed rate
« Reply #11 on: September 16, 2010, 01:31:05 AM »
does not work, fedd rate still as per previous tool path
Thomas

Thank you for your support in developing better cnc experiance.
 Scan my avatar with smart pnone .......
http://big-tex.tk/

Offline ger21

*
  • *
  •  6,295 6,295
    • View Profile
    • The CNC Woodworker
Re: feed rate
« Reply #12 on: September 16, 2010, 07:04:55 AM »
Is there more code?
Gerry

2010 Screenset
http://www.thecncwoodworker.com/2010.html

JointCAM Dovetail and Box Joint software
http://www.g-forcecnc.com/jointcam.html
Re: feed rate
« Reply #13 on: September 16, 2010, 12:20:35 PM »
Nope this is it.....
Thomas

Thank you for your support in developing better cnc experiance.
 Scan my avatar with smart pnone .......
http://big-tex.tk/

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: feed rate
« Reply #14 on: September 18, 2010, 08:19:19 PM »
What is in the M6end macro??  A tool change is 2 parts M6start and M6end

(;-) TP
Re: feed rate
« Reply #15 on: September 18, 2010, 09:04:26 PM »
what ever mach3 comes with i have not changed it at all
Thomas

Thank you for your support in developing better cnc experiance.
 Scan my avatar with smart pnone .......
http://big-tex.tk/

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: feed rate
« Reply #16 on: September 18, 2010, 11:10:11 PM »
I think the answer is in the M6end macro. It deals with safez IF z >safez then it does a traverse move and that may be at Frate IF Z=< than safez then it moves at rapid rate.

Might want to check that. It may explain the different rates.
Re: feed rate
« Reply #17 on: September 19, 2010, 02:36:49 AM »
REM The default script here moves the tool back to m6start if any movement has occured during the tool change..

x = GetToolChangeStart( 0 )
y = GetToolChangeStart( 1 )
z = GetToolChangeStart( 2 )
a = GetToolChangeStart( 3 )
b = GetToolChangeStart( 4 )
c = GetToolChangeStart( 5 )
if(IsSafeZ() = 1) Then
   SafeZ = GetSafeZ()
   if  SafeZ  > z then StraightTraverse x, y,SafeZ, a, b, c
      StraightFeed  x, y,  z  , a, b, c
else
Code"G00 X" & x & "Y" & y
end if



   
That is how my unmodified m6end looks like
Thomas

Thank you for your support in developing better cnc experiance.
 Scan my avatar with smart pnone .......
http://big-tex.tk/
Re: feed rate
« Reply #18 on: September 19, 2010, 02:39:44 AM »
but it does not move at rapid rate that is whole point. it moves at previous feed rate to last location within last tool path.

I think I found bug in my script for probing, it sets feed rate to prior feed rate.
« Last Edit: September 19, 2010, 02:46:40 AM by big-tex »
Thomas

Thank you for your support in developing better cnc experiance.
 Scan my avatar with smart pnone .......
http://big-tex.tk/
Re: feed rate
« Reply #19 on: September 19, 2010, 03:03:10 AM »
Ok now that I found where it comes from and tested it.
I would like to add command to my script f=rapid feed rate
How would I do that?
Thomas

Thank you for your support in developing better cnc experiance.
 Scan my avatar with smart pnone .......
http://big-tex.tk/