Filament

From RepRap
(Redirected from Feeding filament)
Jump to: navigation, search


For a list of filament suppliers with reviews, see --> Printing Material Suppliers.
For techniques for making your own filament out of nurdles or recycled plastic, see --> filament production.

The extruded filament refers to the fine diameter plastic that exits an extruder and is fundamental to the technique RepRap machines use to build plastic models: fused filament fabrication. Typically, the diameter of the filament varies between 1mm and 0.3mm, with 0.5mm typical for many users. The standard extruder produces filament using high pressure and heat to force molten plastic thru a very tiny hole.

Occasionally, some may refer to the plastic 3mm feed stock as filament as well.

Feed stock

Main article: ManagingYourFilament

PLA and ABS are apparently the most popular feed stock for people who have a RepRap, although researchers are testing other Category:Thermoplastic materials.

Some initial work on Polycarbonate (PC) has been done by RichRap, blog post here

Die swell and Stretching

As the plastic deforms and exits the hole, it may 'rebound' somewhat and produce, when not constrained by any other factors, a final diameter slightly larger than the hole. The resulting Die Swell varies by material, temperature, and the hole diameter. PLA tends to have very little die swell, while HDPE has greater - 0.75mm, or 0.8mm filament can exit a 0.5mm hole.

As a machine will rarely extrude filament without additional constraint, this die swell diameter does not entirely determine the final metrics that determine your printer quality. For example, if the head motion moves fast enough, the extruded filament will stretch, and result in a thinner than normal result.

One can use these principles to adjust within some margin print quality against print speed. A model will print about twice as fast with 0.7mm filament, as compared to 0.5mm filament. However, the finish and appearance will have greater detail with 0.3mm filament. There are limits though - if you extrude slower, and move faster, the filament will stretch and break beyond some threshold -- an undesirable result. At the other end, if extrude faster, and move slower, the filament will bulge, produce nodules and blobs -- another undesirable effect.

To tune for either high quality prints, or faster printing time, a minimum and maximum range of final thread rates can prove useful. The following table list some values that Nophead posted in the forums for possible viable ranges of extruder he had used, based on the properties of the material and the extrusion hole diameter:

Material Nozzle Diameter Minimum Range Maximum Range
ABS 0.5mm 0.3mm 0.5mm
ABS 0.3mm 0.25mm 0.4mm
PLA 0.4mm 0.3mm 0.4mm (*)

(*) NOTE - Nophead indicated that trying to extrude 0.5mm PLA thru 0.4mm nozzle resulted in poor quality because PLA does not have much die swell.

TODO - adding to this table for actual measured rates might be good, if people are willing to volunteer their data.

G Code control of filament

The RepRap Darwin 3D G-Code uses M codes to define a power rate to the extruder motor. This technique does not always produce exact extrusion rates, and the 5D gcode, using a direct stepper or position sensitive extruder will produce higher quality printing.

E as length of extrusion

The Mendel 5D G-Code (Mendel_User_Manual:_RepRapGCodes) uses the 'E' axis as a fully independent axis for G1 motion. The number, in imperial or in metric, represents the length of extruded filament. Different machines can and usually do have different filament diameters, and thus, each machine should be tuned to the desired target final filament diameter desired.

  • Example: with a 0.5mm extruder, using metric units, the gcode "G1 E50.93" should extrude about 10mm^3 of material, depending on how much die swell there is, and how the machine has been calibrated. The extruder is calibrated during commissioning.
 <math>\begin{align}volume& = \pi \times ( radius ) ^{2} \times length\\

& = \pi \times ( \tfrac{diameter}{2} ) ^{2} \times length\\ & = \pi \times ( \tfrac{0.5mm}{2} ) ^{2} \times 50.93mm \approx 10.000(mm^{3}) \end{align} </math>

E as length of filament consumed

Some slicers and printers use the E code to measure the length of consumed filament rather than the length of extruded filament. This method of Volumetric Dimension settings is somewhat easier to calibrate, since one can mark and measure the filament prior to the extruder and measure the length consumed per unit of E. See Triffid_Hunter's_Calibration_Guide#E_steps or http://richrap.blogspot.com/2012/01/slic3r-is-nicer-part-1-settings-and.html

E as cubic mm of plastic

Additionally, one can assume an ideal 1mm^3 per mm filament and use Gcode with the E values measured in mm^3, if the firmware can convert cubic mm into an appropriate E value. Marlin is capable of this with either M92 or M200. See Triffid_Hunter's_Calibration_Guide#Optional:_Switch_to_volumetric_E_units for some details.

Further reading