0
0
3D Printingknowledge~10 mins

Print speed and acceleration in 3D Printing - 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 print speed in a 3D printer configuration.

3D Printing
print_speed = [1]  ;  // speed in mm/s
Drag options to blanks, or click blank then click option'
Aspeed
Bfast
C60
DprintSpeed
Attempts:
3 left
💡 Hint
Common Mistakes
Using a word like 'fast' instead of a numeric value.
Using variable names instead of actual speed values.
2fill in blank
medium

Complete the code to set the acceleration value for the printer's movement.

3D Printing
acceleration = [1]  ;  // acceleration in mm/s²
Drag options to blanks, or click blank then click option'
Aspeed
B1000
Cfast
Daccel
Attempts:
3 left
💡 Hint
Common Mistakes
Using variable names instead of numeric values.
Using descriptive words like 'fast' instead of numbers.
3fill in blank
hard

Fix the error in the code to correctly set the maximum print speed.

3D Printing
max_speed = [1]  ;  // max speed in mm/s
Drag options to blanks, or click blank then click option'
Aspeed
BmaxSpeed
C"fast"
D120
Attempts:
3 left
💡 Hint
Common Mistakes
Using strings like "fast" instead of numbers.
Using variable names instead of numeric values.
4fill in blank
hard

Fill both blanks to create a dictionary of speeds for different printer parts.

3D Printing
speeds = {"extruder": [1], "bed": [2]  ;  // speeds in mm/s
Drag options to blanks, or click blank then click option'
A50
B60
C70
Dspeed
Attempts:
3 left
💡 Hint
Common Mistakes
Using variable names instead of numbers.
Using the same speed for both parts without reason.
5fill in blank
hard

Fill all three blanks to create a dictionary with acceleration settings for axes.

3D Printing
acceleration_settings = {"x": [1], "y": [2], "z": [3]  ;  // acceleration in mm/s²
Drag options to blanks, or click blank then click option'
A800
B1000
C600
Daccel
Attempts:
3 left
💡 Hint
Common Mistakes
Using strings instead of numbers or variables.
Using the same acceleration for all axes without reason.