NEWS
LinuxCNC 2.5.2 Release
LinuxCNC 2.5.2 Update Released (changelog).
 
LinuxCNC 2.5.1 Release

LinuxCNC 2.5.1 Update Released (changelog). If the Package Manager does not prompt you to upgrade see this page.

 
LinuxCNC 2.5.0 Release
New major release (changelog). See the instructions to update your system from EMC 2.4 to LinuxCNC 2.5.
 
Home Forum Machining Milling Speed and Feed Charts

Welcome, Guest
Username: Password: Remember me

TOPIC: Speed and Feed Charts

Re:Speed and Feed Charts 10 Dec 2009 03:10 #1291

  • piasdom
  • piasdom's Avatar
  • OFFLINE
  • Moderator
  • Posts: 537
  • Karma: 2
damn :) tried to load an exe file...they don't like that :)
here's what i have:

#include <iostream>
using namespace std;

float sfm;
float dia;
double stan = 3.82;
float rpm;
float ipr;
float ipm;

int main ()
{
/*feed/rpm gives distance per rev divided by
# of flutes -- from cradek #emc*/
int i;

cout << "mill formulas:\n(1)rpm\n(2)sfm\n(3)ipr\n(4)ipm\n selection: ";
cin >> i;
switch (i)
{
case 1:
cout << "to find rpm.\n";
cout << "sfm: ";
cin >> sfm;
cout << "tool dia: ";
cin >> dia;
cout << "recommended rpm " << (sfm*stan)/dia << "\"\n";
break;
case 2:
cout << "to find sfm.\n";
cout << "revolutions per minute: ";
cin >> rpm;
cout << "tool dia: ";
cin >> dia;
cout << "recommend sfm " << rpm*dia*.262 << "\"\n";
break;
case 3:
cout << "to find ipr.\n";
cout << "inch per minute: ";
cin >> ipm;
cout << "rpm: ";
cin >> rpm;
cout << "recommend sfm " << ipm/rpm << "\"\n";
break;
case 4:
cout << "to find ipm.\n";
cout << "inch per revolution: ";
cin >> ipr;
cout << "rpm: ";
cin >> rpm;
cout << "recommend sfm " << ipr*rpm << "\"\n";
break;
default: cout << "not a choice.\n";
}
cout << "enter zero to exit.";
cin >> i;
while (i!=0)
{cout << "enter zero to exit.";
cin >> i;}

return 0;
}
The administrator has disabled public write access.

Re:Speed and Feed Charts 10 Dec 2009 04:03 #1292

  • BigJohnT
  • BigJohnT's Avatar
  • OFFLINE
  • Administrator
  • Posts: 4955
  • Thank you received: 86
  • Karma: 134
Cool, a short little basic program.

I wonder how it compares to the one on this page?

wiki.linuxcnc.org/cgi-bin/emcinfo.pl?Sim...MC_G-Code_Generators

John
Last Edit: 10 Dec 2009 04:19 by BigJohnT.
The administrator has disabled public write access.

Re:Speed and Feed Charts 10 Dec 2009 04:49 #1294

  • piasdom
  • piasdom's Avatar
  • OFFLINE
  • Moderator
  • Posts: 537
  • Karma: 2
can't attach exe files...so this is what i have.

//feeds and speeds


#include <iostream>
#include "float.hpp"

using namespace std;

int main ()
{
/*feed/rpm gives distance per rev divided by
# of flutes -- from cradek #emc*/
int i;

cout << "mill formulas:\n(1)rpm\n(2)sfm\n\(3)ipr\n(4)ipm\n selection: ";
cin >> i;
switch (i)
{
case 1:
cout << "to find rpm.\n";
cout << "sfm: ";
cin >> sfm;
cout << "tool dia: ";
cin >> dia;
cout << "recommended rpm " << (sfm*stan)/dia << "\"\n";
break;
case 2:
cout << "to find sfm.\n";
cout << "revolutions per minute: ";
cin >> rpm;
cout << "tool dia: ";
cin >> dia;
cout << "recommend sfm " << rpm*dia*.262 << "\"\n";
break;
case 3:
cout << "to find ipr.\n";
cout << "inch per minute: ";
cin >> ipm;
cout << "rpm: ";
cin >> rpm;
cout << "recommend sfm " << ipm/rpm << "\"\n";
break;
case 4:
cout << "to find ipm.\n";
cout << "inch per revolution: ";
cin >> ipr;
cout << "rpm: ";
cin >> rpm;
cout << "recommend sfm " << ipr*rpm << "\"\n";
break;
default: cout << "not a choice.\n";
}
cout << "enter zero to exit.";
cin >> i;
while (i!=0)
{cout << "enter zero to exit.";
cin >> i;}

return 0;
}
The administrator has disabled public write access.

Re:Speed and Feed Charts 10 Dec 2009 08:10 #1298

  • piasdom
  • piasdom's Avatar
  • OFFLINE
  • Moderator
  • Posts: 537
  • Karma: 2
i attached it as a txt file.. This attachment is hidden for guests. Please log in or register to see it.
Attachments:
  • Attachment This attachment is hidden for guests. Please log in or register to see it.
The administrator has disabled public write access.

Re:Speed and Feed Charts 20 May 2010 04:35 #2926

  • piasdom
  • piasdom's Avatar
  • OFFLINE
  • Moderator
  • Posts: 537
  • Karma: 2
going back over this, i noticed i never did give a link.
sorry.

www.custompartnet.com/calculator/milling-speed-and-feed
The administrator has disabled public write access.

Re:Speed and Feed Charts 27 Oct 2010 13:10 #4915

  • piasdom
  • piasdom's Avatar
  • OFFLINE
  • Moderator
  • Posts: 537
  • Karma: 2
BigJohnT wrote:
Can you post a link?

John

sorry it's been so long,
i usually use this when i'm cutting something beside 6061.

www.lakeshorecarbide.com/lakeshorecarbid...edandfeedcharts.aspx
The administrator has disabled public write access.
Moderators: piasdom
Time to create page: 1.468 seconds
Powered by Kunena Forum
© 2013 LinuxCNC.org
Joomla! is Free Software released under the GNU General Public License.