Bird
0
0
CNC Programmingscripting~10 mins

Feed rate (F word) specification 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 set the feed rate to 150 mm/min.

CNC Programming
G01 X10 Y10 [1]150
Drag options to blanks, or click blank then click option'
AF
BS
CM
DG
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'S' which sets spindle speed instead of feed rate.
Using 'M' or 'G' which are for other commands.
2fill in blank
medium

Complete the code to move to X20 Y20 with a feed rate of 200 mm/min.

CNC Programming
G01 X20 Y20 [1]200
Drag options to blanks, or click blank then click option'
AS
BG
CF
DM
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing feed rate 'F' with spindle speed 'S'.
Omitting the feed rate letter.
3fill in blank
hard

Fix the error in the code to correctly specify feed rate 100 mm/min.

CNC Programming
G01 X30 Y30 [1]100
Drag options to blanks, or click blank then click option'
AM
BF
CS
DG
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'S' which sets spindle speed.
Not including the 'F' letter.
4fill in blank
hard

Fill both blanks to set feed rate to 250 mm/min and move to X40 Y40.

CNC Programming
G01 X40 Y40 [1] [2]
Drag options to blanks, or click blank then click option'
AF
B250
C150
DS
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'S' instead of 'F' for feed rate.
Using wrong speed value.
5fill in blank
hard

Fill all four blanks to move to X50 Y50 with feed rate 300 mm/min and spindle speed 1200 rpm.

CNC Programming
G01 X50 Y50 [1] [2] [3] [4]
Drag options to blanks, or click blank then click option'
AF
B300
CS
D1200
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing feed rate and spindle speed letters.
Using wrong numeric values.