Difference between revisions of "Team:Edinburgh/Modeling"

Line 8: Line 8:
 
     </head>
 
     </head>
  
<!-- menu -->  
+
  <!-- menu -->  
 
<div id="custom-bootstrap-menu" class="navbar navbar-default navbar-fixed-top" role="navigation">
 
<div id="custom-bootstrap-menu" class="navbar navbar-default navbar-fixed-top" role="navigation">
 
     <div class="container-fluid">
 
     <div class="container-fluid">
Line 37: Line 37:
 
                       <li><a href="https://2015.igem.org/Team:Edinburgh/DNPBiosensor">DNP Biosensor</a></li>
 
                       <li><a href="https://2015.igem.org/Team:Edinburgh/DNPBiosensor">DNP Biosensor</a></li>
 
                       <li><a href="https://2015.igem.org/Team:Edinburgh/PMABiosensor">PMA Biosensor</a></li>
 
                       <li><a href="https://2015.igem.org/Team:Edinburgh/PMABiosensor">PMA Biosensor</a></li>
                       <li><a href="https://2015.igem.org/Team:Edinburgh/CBD">Making it Stick</a></li>            
+
                       <li><a href="https://2015.igem.org/Team:Edinburgh/CBD">Making it Stick</a></li>            
                       <li><a href="https://2015.igem.org/Team:Edinburgh/Results">Results</a></li>
+
                       <li><a href="https://2015.igem.org/Team:Edinburgh/Results">Limits of Detection</a></li>
 
                     </ul>
 
                     </ul>
 
                   </li>
 
                   </li>
Line 86: Line 86:
 
                     </ul>
 
                     </ul>
 
                   </li>
 
                   </li>
                   <li><a href="https://2015.igem.org/Team:Edinburgh/MedalCriteria">Medal Criteria</a></li>   
+
                   <li><a href="https://2015.igem.org/Team:Edinburgh/MedalCriteria">Accomplishments</a></li>   
 
             </ul>
 
             </ul>
 
         </div>
 
         </div>
 
     </div>
 
     </div>
 
</div>
 
</div>
 
  
 
     <!-- End of menu  -->
 
     <!-- End of menu  -->

Revision as of 18:56, 20 November 2015

gh

Overview

This year we focused our modeling efforts on the development of our device design. We worked on reaction-diffusion systems which helped us to find the weak points in our designs and to come up with new prototypes.

The model consists of two main parts; diffusion and reaction. The diffusion part predicts how the solution, once applied, will move through the paper and the reaction part models how the different enzymes and chemicals present on the paper will react with each other.

The Base Conditions

The starting conditions of the model are made by using a png image import which defines the different parts of the biosensor i.e.: where the solution is applied, hydrophobic areas, frontiers and where the enzymes are freeze dried.

Diffusion-reaction

A diffusion kernel, along with a diffusion matrix, control the movement of the solution on paper and form the backbone of the diffusion model. Our “world” is updated at every time step which, in turn, updates the concentration on every point of the paper. At every time step we also use a list of the reaction rates to update the model with changing concentrations. We use vector calculus throughout the code to make efficient use of resources.

Go to code