Sunday, April 27, 2014

 

Open call for AMRI 2014 Summer Fellowships

We are thrilled to announce an open call for Summer 2014 Fellowships at Advanced Manufacturing Research Institute (AMRI), hosted at Rice University in the department of Bioengineering.

This year there is an open call for applications for the following projects:

Project 1: e-NABLE 3D Printed Prosthetic Devices
In collaboration with the worldwide e-NABLE group, and Gloria Gogola, M.D. at Shriners Hospital for Children, Fellows will aid in the design, 3D printing, testing, and refinement of open-source prosthetic hand and finger designs. This unique fellowship will bring 3D printing into the clinical setting, working closely with Dr. Gogola and her patients in need.

Project 2: Selective Laser Sintering (SLS)
Fellows will augment and refine the open SLS design pioneered by Andreas Bastian last year. SLS machines typically cost $50k or more, we built ours for under $15k. This year we will focus on powder manufacturing and powder handling, as well as characterization of SLS parts via scanning electron microscopy (SEM) and mechanical testing.

Project 3: OLED 3D Photolithography of Living Tissues
Related to Anderson Ta’s exciting digital light projection (DLP) photolithography last year, Fellows will investigate and program organic light emitting diode (OLED) screens as a light source for 3D photolithographic printing of living tissues. Chemical functionalization of glass surfaces will also be investigated to passivate the screen surface and aid in detachment and 3D printing from the light source surface.

Check out all the details, and be sure to apply by May 15th:
http://amrinstitute.org

Questions can be directed to amri@rice.edu.

Tuesday, April 08, 2014

 

Custom G-code Generation with Mecode

If you've ever wanted to hard-code gcode but still retain some scripting flexibility (for art, science, or engineering), Jack Minardi just posted a custom g-code generation package he's been working on... it looks great.

Checkout the RepRap wiki entry and
also the github repo with instructions

This could be a big win for 3d printing sacrificial inks like sugars and pluronics where each extruded filament position needs to be placed with precise (x,y,z) coordinates. And for arcs and meanders, there are built-in functions too! Very exciting. From the Github README:
To use, simply instantiate the G object and use its methods to trace your desired tool path.
from mecode import G
g = G()
g.move(10, 10) # move 10mm in x and 10mm in y
g.arc(x=10, y=5, radius=20, direction='CCW') # counterclockwise arc with a radius of 5
g.meander(5, 10, spacing=1) # trace a rectangle meander with 1mm spacing between passes
g.abs_move(x=1, y=1) # move the tool head to position (1, 1)
g.home() # move the tool head to the origin (0, 0)


We got a chance to meet Jack at MRRF and everyone had a great time. Jack Minardi is currently a Research Fellow at Lewis Lab at Harvard.

This page is powered by Blogger. Isn't yours?

Subscribe to
Posts [Atom]