How to Cure Resin 3D Prints: Step-by-Step Guide
To cure resin 3D prints, first clean the print with isopropyl alcohol to remove uncured resin, then expose it to
UV light for several minutes to harden the surface fully. Proper curing improves strength and detail retention of the resin print.Syntax
Here is the basic process to cure resin 3D prints:
- Cleaning: Use
isopropyl alcohol (IPA)to wash off uncured resin. - Drying: Let the print dry completely after washing.
- UV Curing: Expose the print to a
UV light sourceor sunlight for a set time.
Each step is essential to ensure the print is fully cured and durable.
python
def cure_resin_print(print_object): wash_with_ipa(print_object, duration=3) # minutes dry_print(print_object, duration=10) # minutes uv_cure(print_object, uv_light_power=405, duration=10) # nm and minutes return print_object
Example
This example shows a typical curing routine for a resin 3D print using a UV curing station.
python
# Pseudocode for curing a resin 3D print print_object = '3D_print_model' # Step 1: Clean the print wash_with_ipa(print_object, duration=3) # Wash for 3 minutes # Step 2: Dry the print wait(duration=10) # Let it dry for 10 minutes # Step 3: Cure with UV light uv_cure(print_object, uv_light_power=405, duration=10) # Cure for 10 minutes print('Print is fully cured and ready to use!')
Output
Print is fully cured and ready to use!
Common Pitfalls
Many beginners make these mistakes when curing resin prints:
- Skipping cleaning: Leaving uncured resin on the print causes sticky surfaces and weak parts.
- Insufficient UV exposure: Not curing long enough results in soft or brittle prints.
- Over-curing: Excessive UV exposure can cause brittleness and yellowing.
- Uneven curing: Not rotating the print or using uneven light leads to inconsistent hardness.
Always follow recommended times and use proper equipment for best results.
python
def wrong_cure(print_object): # Skipping cleaning step uv_cure(print_object, uv_light_power=405, duration=5) # Too short return print_object def correct_cure(print_object): wash_with_ipa(print_object, duration=3) dry_print(print_object, duration=10) uv_cure(print_object, uv_light_power=405, duration=10) return print_object
Quick Reference
Summary tips for curing resin 3D prints:
- Use 90%+ isopropyl alcohol for cleaning.
- Wash prints for 2-5 minutes depending on size.
- Dry prints fully before curing.
- Use a UV light source around 405 nm wavelength.
- Cure prints for 5-15 minutes, rotating if possible.
- Avoid over-curing to prevent brittleness.
Key Takeaways
Always clean resin prints with isopropyl alcohol before curing to remove uncured resin.
Use a UV light source around 405 nm wavelength and cure prints for 5-15 minutes.
Dry prints completely before UV curing to ensure even hardening.
Avoid under-curing or over-curing to maintain print strength and detail.
Rotate prints during curing if possible for uniform exposure.