User:Saul/3d printer

From Organic Design wiki

This page contains my notes on 3d printing.

Hardware

Mechanical Testing

https://engineerdog.com/2015/09/02/mechanical-testing-3d-printed-parts-results-and-recommendations/

Nozzles

A good nozzle is required for accurate printing, smaller sizes have neater finishes but take longer, where big nozzles do it quicker but the layers are more visible.
Here are some nozzles people seem to recommend:

  • E3D Volcano
  • E3D V6

Plastic

PLA, ABS, TPU, TPEG and composite filaments - aliexpress.

OctoPi

You can set the Raspberry Pi up with a 3d printer via OctoPi to allow video streaming and wireless control see here.
The pi would not connect to the network with the wifi stick and the default instructions - I had to change my configuration to the following:

network={
	ssid="xxxxxxx"
	psk="pass"
	proto=RSN
	key_mgmt=WPA-PSK
	pairwise=CCMP TKIP
	auth_alg=OPEN
}

Software

Slicers

Slicers are programs that convert a model into printable gcode.

Slic3r

Slic3r is a program for imported models and configuring them for the printer and exporting the print-ready gcode.

Fill Settings

My recommended fill settings are:

  • Wall layers: 3 (tested to be the apex for strength)
  • Top and bottom layers: 5 (I have found the default of 3 not quite enough in most circumstances)
  • Fill type: Rectlinear (tested to be the strongest)
  • Fill percentage: >30% (anything less is just too weak)
  • Fill speed: ?

Cura

Simplify3D

Printrun/Pronterface

Printrun/Pronterface is a good program to connect to the printer and control it from your computer.

Retraction Settings

Retraction is where the extruder runs in reverse to prevent plastic coming out when it is moving, this prevents issues like stringing.

Calibration

Extruder Steps

  • Set nozzle temperature to 190deg (PLA)
  • Mark the filament before it goes into the feeder around 150mm from the feeder
  • Extrude 100mm of plastic
  • Measure the difference to work out how much the printer used
  • calculate what to set the steps to using:
    CURRENT_STEPS * 100 / PRINTED_PLASTIC

My extruder steps is: 104.4

Extruder Multiplier

  • Print a test cube a single perimter (no infill) of the nozzle diameter
  • Measure the walls
  • work out the multiplier using:
    NOZZLE_WIDTH / PRINTED_WIDTH

My extrusion multiplier is: 0.91

TODO

Without Auto-leveling

Try connecting THE 2 motors in series and adding 2 more on the other sides in series (to support the entire bed) and reduce stepper distance to account for the increased load.

With Auto-leveling

The two steppers must be adjacent to stop the board flexing.

Useful Links