Difference between revisions of "Team:TU Darmstadt/Hardware"

Line 1,026: Line 1,026:
 
         </div>
 
         </div>
 
       </div>
 
       </div>
 +
 +
      <!-- Das JS fuer den Drucker -->
 +
      <script type="text/javascript">
 +
        var parts = ['x-y-axis', 'z-axis', 'optics', 'syringepump', 'chassis', 'electronics'];
 +
 +
        function selectPart(group) {
 +
          return '[id^=printer_' + group + ']';
 +
        }
 +
 +
        function resetClasses() {
 +
          $('[id^=printer_]').removeClass('not-selected selected');
 +
        }
 +
 +
        function setDescription(group) {
 +
          var desc = $('.description-text').find('[data-part='+ group +']').html();
 +
          $('.description').html(desc);
 +
        }
 +
 +
        function resetDescription(group) {
 +
          setDescription('default');
 +
        }
 +
 +
        function hookClick(group) {
 +
          $(selectPart(group)).on('click', function() {
 +
            if ($(selectPart(group)).hasClass('selected')) {
 +
              resetClasses();
 +
              resetDescription();
 +
            } else {
 +
              resetClasses();
 +
              setDescription(group);
 +
              $('[id^=printer_]').not(selectPart(group)).addClass('not-selected');
 +
              $(selectPart(group)).addClass('selected');
 +
            }
 +
          });
 +
        }
 +
 +
        function hookHover(group) {
 +
          $(selectPart(group)).hover(function() {
 +
            $(selectPart(group)).toggleClass('hovered');
 +
          });
 +
        }
 +
 +
        function init(){
 +
          resetClasses();
 +
          resetDescription();
 +
          parts.forEach(hookClick);
 +
          parts.forEach(hookHover);
 +
        }
 +
 +
        $(document).ready(function() {
 +
          init();
 +
        });
 +
      </script>
 
     </body>
 
     </body>
 
     </html>
 
     </html>

Revision as of 13:23, 13 October 2016

If you can see this message, you do not use Javascript. This Website is best to use with Javascript enabled. Without Javascript enabled, many features including the mobile version are not usable.

ABSTRACT
One task of our project is to monitor and to keep alive manipulated E. Coli before they die, since they aren't able to survive on their own due to their dependence on non-natural amino acid. To catch the moment before the bacteria dies, a flourescent protein was implemented in such a way that it emits light as a warn signal.
Therefore, our team decided to build a fully automatized pipetting robot that's able to locate a set of samples, detect potential light emission and pipet a specific amount of nonnatural amino acid onto the fluorescent sample.
The foundation for the robot lays a 3D-printer due to the easy handling of movements in three dimensions. By controlling these movements with an optical system the autonomy of the robot should be be increased even more.

INTRODUCTION

Development of 3D printers & possibilities

In the 80s Chuck Hull invented the first standardized 3D printer, based on a procedure which is known as stereolithography (SLA, [1]). Moving from SLA to full deposit modeling (FDM) techniques, the 3D printing idea became alive in the Do‑It‑Yourself community. Ever since that time, basic 3D printers are accessible for little money and due to the open source idea of projects like REPRAP [2] affordable for many. In last years project, iGEM TU Darmstadt build already a fully working SLA printer, capable of feeding it with biological engineered plastics [3].
So now, the hardware branch decided to rebuild a clone of the Ultimaker 2 FDM printer [4] and exchange the extruder with a camera and a pipette to create a pipetting robot. Using several open‑source parts and software, it is the idea to establish an easy manageable robot to help the daily biologist's work.

Lab 3.0

Following the concept of the industry 3.0, the automation of simple tasks by robots (refers to the 4th stage of industrial revolution) let us introduce the laboratory 3.0, which enables scientists to concentrate on actual science by the automation of simple, repeating work. This task is fulfilled with intelligent robots, which are enabled to detect, react and response to the experimenter.

Connection to our team

iGEM TU DARMSTADT is a young and dynamic team of engaged researches. We have limited resources, namely time and money and we have to invent our lab work every day again, to reach more and stayfocus on science. We have the possibilities, thanks to iGEM, to experiment on our own ideas and to try reaching the sky (or actual the biologist's equivalent to something really cool). Interdisciplinary opens our mind and sharpens our knowledge for the important things. It is really helpful, if we work together and benefit from each other.

References:

  1. http://edition.cnn.com/2014/02/13/tech/innovation/the-night-i-invented-3d-printing-chuck-hall
  2. https://2015.igem.org/Team:TU_Darmstadt/Project/Tech
  3. http://reprap.org/wiki/About
  4. http://www.thingiverse.com/thing:811271, jasonatepaint

GOALS

The main task is to develop a machine which is capable to monitor our organisms and their health condition in order to keep them alive. Therefore the machine has to measure the light emittance of the organisms and be capable of dropping liquids into our containers. This has to be independent of the exact position of the container, which requires an automatic tracking system.
The idea is that one places a container somewhere under the machines working area and click a run button of a program. The machine starts its routine by tracking the new container and measuring the light emittance of the organisms. Based on the measurement the machine decides whether to feed the organisms with non‑natural amino acid or not. After a period of time it repeats this routine until the stop button of the program is clicked.
These are only the minimum requirements for our project needs. We decided to go one step further ans designed our machine in such a way, that it serves as a multi purpose platform which is adaptable and easy to modify. Our aim is that it is possible to add new features and software, inviting other scientists to improve our platform and share their ideas with the community.
For example our liquid system can be upgraded to be able to prepare 96-well plates with probes and monitor routines, by using the optic. Or our measuring head can be changed back to a printer head which allows to 3D print again with just a few changes.
One has a vast room of possibilities, just using the concept of the accurate positioning of a probe in the 3D space.
Due to the fact that we try to stick to widely used open-source software and standard commercial parts, our machine can be easily combined with the most DIY products, making it reusable, flexible and cheap.
In the special case of the TU Darmstadt and the next generations of iGEM competitors we have the idea to develop our technical equipment further from year to year and combining them. Our SLA printer from the last years competition was upgraded and is nearly ready for use again, giving us the possibility to manufacture parts for prototyping in our lab. Also this years project will serve as a starting point for the next years technical development team. New ideas and possibilities have been already discussed and we are looking forward to the next years competition.

SETUP OVERVIEW
image/svg+xml