0
0
3d-printingDebug / FixBeginner · 4 min read

How to Fix Stringing in 3D Printing: Simple Solutions

Stringing in 3D printing happens when melted filament leaks out while the nozzle moves between parts. To fix it, adjust retraction settings, lower the printing temperature, and increase travel speed to reduce unwanted strings.
🔍

Why This Happens

Stringing occurs because the hot nozzle leaks small amounts of melted filament while moving between different parts of the print. This happens when the filament is too runny or the printer does not pull back the filament enough during travel moves.

gcode
G1 X50 Y50 F3000 ; move to start
G1 E5 F500 ; extrude filament
G1 X100 Y100 F1500 ; print line
G1 X150 Y150 F3000 ; travel move without retraction
G1 X200 Y200 F1500 ; print line
Output
Result: Thin strings of filament appear between printed parts because no filament retraction was done during travel moves.
🔧

The Fix

To fix stringing, enable and increase retraction so the printer pulls back filament before travel moves. Lower the printing temperature slightly to make the filament less runny. Also, increase the travel speed so the nozzle spends less time moving between parts.

gcode
G1 X50 Y50 F3000 ; move to start
G1 E5 F500 ; extrude filament
G1 E-2 F3000 ; retract filament before travel
G1 X150 Y150 F5000 ; fast travel move
G1 E2 F3000 ; unretract filament
G1 X200 Y200 F1500 ; print line
Output
Result: Clean print with no strings between parts due to proper retraction and faster travel moves.
🛡️

Prevention

To avoid stringing in future prints, always calibrate your retraction settings for your specific filament and printer. Use the lowest temperature that still allows good layer adhesion. Keep travel moves fast and avoid unnecessary nozzle movements over open spaces. Regularly clean your nozzle to prevent melted filament buildup.

⚠️

Related Errors

Similar issues include blobs or zits on prints caused by over-extrusion or poor retraction. Oozing is another related problem where filament leaks during pauses. Fixes often overlap with stringing solutions like tuning retraction and temperature.

Key Takeaways

Enable and fine-tune retraction to pull back filament during travel moves.
Lower printing temperature to reduce filament oozing.
Increase travel speed to minimize time nozzle spends moving between parts.
Clean the nozzle regularly to prevent melted filament buildup.
Calibrate settings for each filament type to prevent stringing.