0
0
3D Printingknowledge~30 mins

3D printing workflow (design to print) - Mini Project: Build & Apply

Choose your learning style9 modes available
3D Printing Workflow: Design to Print
📖 Scenario: You want to create a simple 3D printed object starting from a design. This project will guide you through the basic steps of the 3D printing workflow, from creating the design file to preparing it for printing.
🎯 Goal: Build a clear step-by-step 3D printing workflow that includes creating a design file, setting print parameters, slicing the model, and preparing the printer for printing.
📋 What You'll Learn
Create a design file with a simple 3D shape
Set print configuration parameters such as layer height and infill
Apply slicing to convert the design into printer instructions
Prepare the printer setup including bed temperature and filament type
💡 Why This Matters
🌍 Real World
3D printing is used in prototyping, manufacturing, and hobby projects to create physical objects from digital designs.
💼 Career
Understanding the 3D printing workflow is essential for roles in product design, engineering, and additive manufacturing.
Progress0 / 4 steps
1
Create the 3D design file
Create a variable called design_file and set it to the string "cube.stl" representing the 3D model file name.
3D Printing
Need a hint?

The design file is usually saved with an extension like .stl which is common for 3D models.

2
Set print configuration parameters
Create a dictionary called print_config with keys layer_height set to 0.2 and infill set to 20 representing millimeters and percentage respectively.
3D Printing
Need a hint?

Use curly braces to create a dictionary and separate keys and values with colons.

3
Slice the 3D model
Create a variable called sliced_file and set it to the string "cube.gcode" which represents the sliced file ready for the printer.
3D Printing
Need a hint?

The sliced file usually has a .gcode extension which contains printer instructions.

4
Prepare the printer setup
Create a dictionary called printer_setup with keys bed_temperature set to 60 and filament_type set to "PLA" representing degrees Celsius and filament material.
3D Printing
Need a hint?

Printer setup includes temperature settings and the type of filament used for printing.