PROJECT1
PROJECT1
PROJECT1
CNC PROJECT
This project describes CNC milling operations for machining a specific part.
1. ENGINEERING DRAWING
On ANEX 1 there is the complete drawing for the project, the following image is a snapshot from
that document.
I have chosen the lower left corner as my point 0,0 for coding the CNC program because my part is not
symmetrical, and I want all my coordinate points on XY to be positive.
2. TOOLS DESCRIPTION
Specified part material is carbon steel AISI 1020, then I have selected HSS tools for the
operations, the following list describe selected tools:
12 ∗ 90
𝑅𝑃𝑀 = = 917 𝑟𝑝𝑚
𝜋 ∗ 0.375
Calculation is made takin a reference cutting speed of 90 SFPM and I will use the same RPM of
900 +/- 20 for all drillings because sizes are similar.
𝐹 = 𝑅𝑃𝑀 ∗ 𝐼𝑃𝑅
http://www.carbidedepot.com/formulas-drills-speeds.htm
12 ∗ 90
𝑅𝑃𝑀 = = 343 𝑟𝑝𝑚
𝜋∗1
Calculation is made takin a reference cutting speed of 90 SFPM and I will use the same RPM of
340 +/- 40.
https://www.machiningdoctor.com/calculators/chip-load-calculator/
3
𝐹 = 𝑅𝑃𝑀 ∗ 𝑃𝐼𝑇𝐶𝐻
𝐹 = 900 ∗ 0.076 = 68.4 𝑖𝑛/𝑚𝑖𝑛
1
I used the same rpm obtained in drilling and the pitch was calculated dividing 13 = 0.076 𝑖𝑛/𝑟𝑒𝑣𝑜𝑙𝑢𝑡𝑖𝑜𝑛
4. PROGRAM
OCNCPROJECT
N100 G80;
N180 G80;
N230 G80;
N290 G80;
N350 Z0.5;
N370 Y11.24;
N390 X1.0;
N410 Y17.25;
N420 X13.85;
N440 Y14.29;
N510 X4.79;
5
N560 M05;
5. REFERENCES
Kibbe, R. R., Meyer, R. O., Stenerson, J., & Curran, K. (2019). Machine Tool Practices. Pearson.
http://www.carbidedepot.com/formulas-drills-speeds.htm
https://www.machiningdoctor.com/calculators/chip-load-calculator/