Bird
0
0
CNC Programmingscripting~10 mins

Drilling operation (G81 canned cycle) in CNC Programming - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to start a drilling cycle with G81.

CNC Programming
G81 [1] Z-10.0 R2.0 F100;
Drag options to blanks, or click blank then click option'
AX20 Y20
BX0 Y0
CX10 Y10
DX5 Y5
Attempts:
3 left
💡 Hint
Common Mistakes
Using coordinates outside the workpiece area.
Omitting the X and Y coordinates.
2fill in blank
medium

Complete the code to set the retract plane height in the drilling cycle.

CNC Programming
G81 X10 Y10 Z-15.0 [1] F150;
Drag options to blanks, or click blank then click option'
AR3.0
BR5.0
CR1.0
DR0.5
Attempts:
3 left
💡 Hint
Common Mistakes
Setting R too low causing tool crashes.
Omitting the R parameter.
3fill in blank
hard

Fix the error in the drilling cycle command to correctly specify feed rate.

CNC Programming
G81 X20 Y20 Z-12.0 R2.0 [1];
Drag options to blanks, or click blank then click option'
AM200
BT200
CS200
DF200
Attempts:
3 left
💡 Hint
Common Mistakes
Using S instead of F for feed rate.
Omitting feed rate causing default slow feed.
4fill in blank
hard

Fill both blanks to complete the drilling cycle with correct coordinates and depth.

CNC Programming
G81 X[1] Y[2] Z-8.0 R1.5 F120;
Drag options to blanks, or click blank then click option'
A15
B25
C10
D20
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping X and Y values.
Using coordinates outside the machine limits.
5fill in blank
hard

Fill all three blanks to create a drilling cycle with uppercase G code, correct feed, and retract height.

CNC Programming
[1] X30 Y30 Z-20.0 [2] R[3];
Drag options to blanks, or click blank then click option'
Ag81
BF250
C3.0
DG81
Attempts:
3 left
💡 Hint
Common Mistakes
Using lowercase g81 instead of uppercase G81.
Omitting feed rate or retract height.