Team:TU-Eindhoven/LEC/Device

From 2012.igem.org

(Difference between revisions)
 
(One intermediate revision not shown)
Line 15: Line 15:
[[File:Device.jpg|right|300px|thumb|A picture of our finished device. This will be used to test the response of the yeast cells to electrical stimulation in the laboratory.]]<h3>The heart of the screen</h3>
[[File:Device.jpg|right|300px|thumb|A picture of our finished device. This will be used to test the response of the yeast cells to electrical stimulation in the laboratory.]]<h3>The heart of the screen</h3>
-
<p>We have yeast cells that light up when an <span class = "lightblue">electric current</span> passes over the membrane. To complete our SOMY-LCD, we also needed something that makes the current <span class = "lightblue">on the right places at the right time</span>. For this purpose we created a device with software to provide this control. We will use the yeast in a fluid culture so it can be easily refreshed and in the future the ‘food’ for the yeast can be refilled for long time use of the screen. The fluid culture will consist of a single large medium bath, this causes the resolution to be limited by the device that is used to control the cells only.</p>
+
<p>We have yeast cells that light up when an <span class = "lightblue">electric current</span> passes over the membrane. To complete our SOMY-LCD, we also needed something that makes the current <span class = "lightblue">on the right places at the right time</span>. For this purpose we created a device with software to provide this control. We will use the yeast in a fluid culture so it can be easily refreshed and in the future the 'food' for the yeast can be refilled for long time use of the screen. The fluid culture will consist of a single large medium bath, this causes the resolution to be limited by the device that is used to control the cells only.</p>
<br />
<br />
<h3>Device</h3>
<h3>Device</h3>
-
<p>The use of a fluid yeast culture adds some requirements to our device, because now the device not only has to be <span class = "lightblue">fully bio-compatible</span> (non-toxic to the yeast), it also has to survive in the harsh conditions of <span class = "lightblue">electrolysis</span> in water and <span class = "lightblue">high ion concentrations</span>. Therefore we couldn’t use copper for the electrodes. Not only is copper, as a heavy metal, highly toxic to our yeast, the copper would react with the electrolysis releasing the toxic copper ions into the solution and corroding away our electrodes.</p>
+
<p>The use of a fluid yeast culture adds some requirements to our device, because now the device not only has to be <span class = "lightblue">fully bio-compatible</span> (non-toxic to the yeast), it also has to survive in the harsh conditions of <span class = "lightblue">electrolysis</span> in water and <span class = "lightblue">high ion concentrations</span>. Therefore we couldn't use copper for the electrodes. Not only is copper, as a heavy metal, highly toxic to our yeast, the copper would react with the electrolysis releasing the toxic copper ions into the solution and corroding away our electrodes.</p>
<p>Therefore platinum was chosen as the electrode material and we made sure that this was the only metal that came into contact with the medium. All the other metals are covered by either resin or plastic. Because we use the device with living cells we need a way to <span class = "lightblue">clean the device</span> properly, therefore all the materials can withstand the temperature of <span class = "lightblue">autoclavation</span> and the device can be easily decoupled from the PC to device interface.</p>
<p>Therefore platinum was chosen as the electrode material and we made sure that this was the only metal that came into contact with the medium. All the other metals are covered by either resin or plastic. Because we use the device with living cells we need a way to <span class = "lightblue">clean the device</span> properly, therefore all the materials can withstand the temperature of <span class = "lightblue">autoclavation</span> and the device can be easily decoupled from the PC to device interface.</p>
Line 28: Line 28:
[[File:Device making E.png|325px|left|thumb|Snapshot out of the animation displaying how the device creates an image. In this case of the letter 'e'.]]<h3>Software</h3>
[[File:Device making E.png|325px|left|thumb|Snapshot out of the animation displaying how the device creates an image. In this case of the letter 'e'.]]<h3>Software</h3>
-
<p>During the development of the software, a few stages are passed. The first version of the software was capable of <span class = "lightblue">setting a different voltage to every channel</span>, but this had to be done manually. Although this is enough to test the device in the lab environment, it can’t produce even a single image on the screen.</p>
+
<p>During the development of the software, a few stages are passed. The first version of the software was capable of <span class = "lightblue">setting a different voltage to every channel</span>, but this had to be done manually. Although this is enough to test the device in the lab environment, it can't produce even a single image on the screen.</p>
-
<p>The first step to creating an image is to keep a pixel on without constantly providing an electric signal. Thus some sort of <span class = "lightblue">periodic signal</span> is needed. We achieved this by implementing a <span class = "lightblue">single square wave</span> to one pixel. Now a periodic on/off signal can be given to one pixel, which results in one pixel being constantly ‘on’.</p>
+
<p>The first step to creating an image is to keep a pixel on without constantly providing an electric signal. Thus some sort of <span class = "lightblue">periodic signal</span> is needed. We achieved this by implementing a <span class = "lightblue">single square wave</span> to one pixel. Now a periodic on/off signal can be given to one pixel, which results in one pixel being constantly 'on'.</p>
-
<p>To do this for all pixels, we need <span class = "lightblue">16 square waves</span> (one per pixel). These square waves then are dephased so that only one square wave gives an ‘on’ signal at a time. This allows us to display a single image constantly on our screen. To display multiple images we looked at time. We used the time to select which of the images should be shown and reset the square waves so that they are synchronized with the change of the image so that the device now can produce a <span class = "lightblue">moving image</span>.</p>
+
<p>To do this for all pixels, we need <span class = "lightblue">16 square waves</span> (one per pixel). These square waves then are dephased so that only one square wave gives an 'on' signal at a time. This allows us to display a single image constantly on our screen. To display multiple images we looked at time. We used the time to select which of the images should be shown and reset the square waves so that they are synchronized with the change of the image so that the device now can produce a <span class = "lightblue">moving image</span>.</p>
-
<p>However this software still has a lot of overhead (inefficient use of CPU time) as we have a square wave for each pixel while only one is in the ‘on’ state at any given time. By using the time again we cut it down to <span class = "lightblue">just one square wave</span>. The advantages this brings isn’t measurable with 16 pixels, but a Full HD screen containing 2.073.600 pixels, has to calculate 2.073.599 less square waves due to this small change in the software. The impact of this change can be seen in the figure at the bottom of this page.</p>
+
<p>However this software still has a lot of overhead (inefficient use of CPU time) as we have a square wave for each pixel while only one is in the 'on' state at any given time. By using the time again we cut it down to <span class = "lightblue">just one square wave</span>. The advantages this brings isn't measurable with 16 pixels, but a Full HD screen containing 2.073.600 pixels, has to calculate 2.073.599 less square waves due to this small change in the software. The impact of this change can be seen in the figure at the bottom of this page.</p>
<p> For a complete explanation and overview of all the details of the device, view the <html><a href="https://static.igem.org/mediawiki/2012/d/db/BEPdevice.pdf">bachelor thesis of Christiaan Peppenster</a></html>, one of our team members.</p><br />
<p> For a complete explanation and overview of all the details of the device, view the <html><a href="https://static.igem.org/mediawiki/2012/d/db/BEPdevice.pdf">bachelor thesis of Christiaan Peppenster</a></html>, one of our team members.</p><br />

Latest revision as of 23:11, 26 September 2012