Difference between revisions of "3d printing"

From Applied Optics Wiki
Jump to: navigation, search
(Training)
Line 4: Line 4:
 
The replicator 2 is a relatively easy and straightforward machine to use. BUT please ask someone who has used it before
 
The replicator 2 is a relatively easy and straightforward machine to use. BUT please ask someone who has used it before
 
to show you how before trying it.
 
to show you how before trying it.
[[3D_printing prerequisites]]
 
  
 +
 +
[[3D_printing prerequisites|Import stuff before you start including what software to use]]
  
 
== Typical workflow (how to design and print something) ==
 
== Typical workflow (how to design and print something) ==

Revision as of 18:48, 9 June 2013

The Fab Lab has a Makerbot Replicator 2 for 3D printing using PLA plastic.

Training

The replicator 2 is a relatively easy and straightforward machine to use. BUT please ask someone who has used it before to show you how before trying it.


Import stuff before you start including what software to use

Typical workflow (how to design and print something)

  1. In OpenSCAD design an object - this is done by writing a little program to describe it. This is very easy and very efficient, eg.
 
// linos compatible plate with 30mm hole
$fn=50; 
difference(){ 
	// the cube 
	minkowski(){ 
	cube([38,38,8],center=true); 
	cylinder(r=1,h=1); 
	} 
	// the stuff we remove 
	rotate([0,0,0])cylinder(h=50,r=15,center=true); 
	translate([15,15,0])cylinder(h=10,r=3,center=true); 
	translate([-15,15,0])cylinder(h=10,r=3,center=true); 
	translate([15,-15,0])cylinder(h=10,r=3,center=true); 
	translate([-15,-15,0])cylinder(h=10,r=3,center=true); 
	}

When you're happy use OpenSCAD to save in the .STL format

  1. Turn the .STL into .x3g
    1. Load the .STL file in replicatorg

NB: Make sure replicatorg is set for the correct printer (machine:machine type (driver):replicator 2).

    1. Use the GCode:estimate function to estimate how long your design will take to print - do you really want to do this?
    2. Select generate .gcode (or click the ->gcode button), this will typically take a few minutes. This should spot if your

design has -ve height - allow replicatorg to fix this. Get a cup of tea.

    1. Generate the .x3g file - press the ->document icon (Build file for SD card, located next to ->gcode button). Make sure you select .x3g".
  1. Check the .gcode with RepitierHost

Simply load the .gcode file and check it layer by layer to make sure you are happy.

  1. Put your .x3g file onto an SD card. Take to the printer, insert and print.