You are on page 1of 17

Lab 11

Writing A Program for Tapping


Cycle on CNC Milling Machine
Objective
• In this lab we have to learn about tapping cycle
operationusing CNC milling machine and
constructing a program for tapping cycle.
Introduction
• Tapping is the process of cutting a thread
inside a hole so that a cap screw or bolt can be
threaded into the hole.
Images
Images
Image
Images
Codes
• G84 Code: Tapping of right hand threads to be
done with M03 spindle rotation.
• G74 Code: Tapping of left hand threads to be
done with M04 spindle rotation.

G84 X Y Z R F
Feed Calculations
Feed = RPM * Pitch
If pitch= 0.5 mm RPM= 200 rpm
Feed = 200 * 0.5 mm
Feed = 100 mm/min
Figure
Coordinates

S.No X Y

1 40 45

2 90 45
Program
O0124
N05 G21;
N10 G91 G28 X0. Y0. Z0.;
N15 M06 T01;
N20 G43 H01;
N25 M08;
N30 M03 S900;
N35 G90;
Program
N40 G00 X40. Y45.;
N45 Z3.;
N50 G81 X40. Y45. Z-1.0 R3. F100;
N55 X90. Y45.;
N60 G80;
N65 G00 Z30.;
N70 G91 G28 X0. Y0. Z0.;
N75 M05;
Program
N80 M06 T02;
N85 G43 H02;
N90 M03 1000;
N95 X40. Y45;
N100 Z4.;
N105 G83 X40. Y45. Z-20.0 Q4. R3. F100;
N110 X90. Y45.;
N115 G80;
Program
N120 G00 Z30.;
N125 G91 G28 X0. Y0. Z0.;
N130 M06 T05;
N135 G43 H05;
N140 M03 S200;
N145 G00 X40. Y45.;
N150 Z4.;
N155 G84 X40. Y45. Z-20.0 R3. F100;
Program
N160 X90. Y45.;
N165 G80;
N170 M05;
N175 M09;
N180 G91 G28 X0. Y0. Z0.;
N185 M30;
Video Links
• https://www.youtube.com/watch?v=gD5ZcyzT
SQg&t=7s

You might also like