Team:LCG-UNAM-Mexico:CA
From 2009.igem.org
(Difference between revisions)
(→Design) |
|||
Line 23: | Line 23: | ||
==Design== | ==Design== | ||
<br> | <br> | ||
- | |||
We will use the word cell for the elements of the grid in the automaton and the word bacterium for E coli.<br> | We will use the word cell for the elements of the grid in the automaton and the word bacterium for E coli.<br> | ||
The state of the cells in the CA is an array of integers representing different parameters.<br><br> | The state of the cells in the CA is an array of integers representing different parameters.<br><br> | ||
- | '' | + | <span style='font-size:15pt;color:red'> CA[i,j] =[s, d, l, r, i, lt, bs, np]</span> |
- | + | <br> | |
- | + | '''s = 1 if there is a bacteria in this cell 0 otherwise.'''<br> | |
- | + | '''d = direction [1, 2, ... 8] (random variable)'''<br> | |
- | + | ''' l = persistence time REFERENCE ''' <br> | |
- | + | ''' r = time until duplication (random variable)''' <br> | |
- | + | ''' i = infection state. 1 if infected 0 otherwise.''' <br> | |
- | + | ''' lt = time until lysis (random variable).''' <br> | |
- | + | ''' bs= Burst Size, amount of phages an infected bacteria will produce (random variable)''' <br> | |
+ | ''' np= number of phages.''' <br> | ||
<br><br> | <br><br> | ||
We sample indexes of the rows and columns in the grid at random and then we iterate in that order, thus we have a random sampling without replacement that require only 2n random numbers instead of <math>n\square</math>. <br><br> | We sample indexes of the rows and columns in the grid at random and then we iterate in that order, thus we have a random sampling without replacement that require only 2n random numbers instead of <math>n\square</math>. <br><br> |
Revision as of 05:34, 16 October 2009