Best practice feedrate?
- somenewguy
- Offline
- Senior Member
- Posts: 44
- Thank you received: 0
Just looking for input, what is smart and what is not. Writing subroutines is almost more fun than the actual machining right now.
Please Log in or Create an account to join the conversation.
Keep in mind the same tool may use a different feed / spindle rates when machining different materials.
Rick G
Please Log in or Create an account to join the conversation.
I am wondering waht the best practice is for setting feedrate.
It's a complicated subject.
I have found this web site to be fairly instructive:
zero-divide.net/?page=fswizard
It gives a pretty good feel for where the limit is cutting force or spindle power, and seems to have a database of what worked for other people.
Unlike most similar tools it doesn't assume that my spindle can do 20,000 rpm.
Please Log in or Create an account to join the conversation.
It has been very handy, and I'd recommend it. I'm not affiliated, just a happy customer.
Please Log in or Create an account to join the conversation.
- somenewguy
- Offline
- Senior Member
- Posts: 44
- Thank you received: 0
However my original question got misunderstood I think. I was wondering if I have a bunch of subroutines, should they all require I give them a feedrate to operate, or should they all require feedrate be set prior to calling them. I feel like the later is more practical, if you need to chain 10 or 30 subs together it is easier to set and forget, but if you lose the granularity.
Please Log in or Create an account to join the conversation.
However my original question got misunderstood I think. I was wondering if I have a bunch of subroutines, should they all require I give them a feedrate to operate, or should they all require feedrate be set prior to calling them.
To an extent you could set SFM and cut per rev globally, and have the sub calculate feed based on the tool data. However that would always be wrong for very delicate or very massive tools.
I guess it depends on how similar to each other your tools are. I swap from 0.5mm engravers to a 100mm side and face cutter. Different factors pertain.
Please Log in or Create an account to join the conversation.
- somenewguy
- Offline
- Senior Member
- Posts: 44
- Thank you received: 0
Please Log in or Create an account to join the conversation.
- somenewguy
- Offline
- Senior Member
- Posts: 44
- Thank you received: 0
Please Log in or Create an account to join the conversation.
However my original question got misunderstood I think. I was wondering if I have a bunch of subroutines, should they all require I give them a feedrate to operate, or should they all require feedrate be set prior to calling them.
Perhaps not by everyone.
You can of course use a global variable. Or a preamble sub to set the feed rate once and then forget it. If there are no tool changes the feed rate may stay constant at which case just set it once.
Some subs might be called from the main ngcgui sub in which case the feed rate can be passed on with the call.
However I add the spindle and feed rate fields to all subs just to confirm and to edit if I want to use a different rate perhaps for finishing or final pass.
Also if you have the same name for the parameter in all your subs after you fill it out the first time it can automatically be filled in on the remaining subs.
.....
#<feed> = #1 (= feed)
.....
Rick G
Please Log in or Create an account to join the conversation.
- somenewguy
- Offline
- Senior Member
- Posts: 44
- Thank you received: 0
also in 2.5.3, the sub will accept #<namedparam> as input, however it will NOT accept #<namedparam> inside of NGCGUI. It also wont let me type the letter 'd', it just adds 0.0000 and lets me fill it out like insert, which is a cool feature but I had no idea it existsted and its not in the list of keybindings. what is it and can I turn it off?
Please Log in or Create an account to join the conversation.