Team:Valencia Biocampus/Demonstration/Diffusion3

From 2013.igem.org

(Difference between revisions)
(Proof of a Group Behavior Diffusion Model from a Random Walk Model)
(Proof of a Group Behavior Diffusion Model from a Random Walk Model)
Line 25: Line 25:
<br/>
<br/>
Discretizing the whole space into pixels, and assuming, the worm can, either occupy one or not, we can assure that, at each time step, it can only move in four different directions: up, down, right or left from its position. As we considered that each random variable follows an <i>uniform probabilistic distribution</i>, it is equipossible to move in any of these directions, with a probability of $ \frac{1}{4} $ each.  
Discretizing the whole space into pixels, and assuming, the worm can, either occupy one or not, we can assure that, at each time step, it can only move in four different directions: up, down, right or left from its position. As we considered that each random variable follows an <i>uniform probabilistic distribution</i>, it is equipossible to move in any of these directions, with a probability of $ \frac{1}{4} $ each.  
 +
<br/>
 +
<html>
 +
<div style="text-align:center;">
 +
<a href=""><img src="https://static.igem.org/mediawiki/2013/3/34/Cel.png" width="240" height="230" alt="Allowed directions"/></a>
 +
</div>
 +
</html>
<br/>
<br/>
Now, we can compute, the probability that the worm is at position $(x_m,y_m)$ at the iteration $n+1$ as follows:
Now, we can compute, the probability that the worm is at position $(x_m,y_m)$ at the iteration $n+1$ as follows:
Line 52: Line 58:
$$\frac{\partial P}{\partial t} = D \; \left(\frac{\partial^2 P}{\partial x^2} + \frac{\partial^2 P}{\partial y^2}\right) $$
$$\frac{\partial P}{\partial t} = D \; \left(\frac{\partial^2 P}{\partial x^2} + \frac{\partial^2 P}{\partial y^2}\right) $$
<br/>
<br/>
-
<html>
 
-
<div style="text-align:center;">
 
-
<a href=""><img src="https://static.igem.org/mediawiki/2013/3/34/Cel.png" width="240" height="230" alt="Allowed directions"/></a>
 
-
</div>
 
-
</html>
 
-----
-----
Okopinska A. (2002) <i>Fokker-Planck equation for bistable potential in the optimized expansion</i>. Physical review E, Volume 65, 062101 <br/>  
Okopinska A. (2002) <i>Fokker-Planck equation for bistable potential in the optimized expansion</i>. Physical review E, Volume 65, 062101 <br/>  

Revision as of 16:13, 3 October 2013

Show/hide wiki menu

Proof of a Group Behavior Diffusion Model from a Random Walk Model

Considerations for the Random Walk:

  • Step lenghts ($l_t$) in the order of a pixel in size. That implies, $ \Delta t $ as small as possible.
  • Perfect Random Walk, with uniform probabilistic distributions either for $ v_t $, $\dot{\theta_t}$ and $\delta$.

Discretizing the whole space into pixels, and assuming, the worm can, either occupy one or not, we can assure that, at each time step, it can only move in four different directions: up, down, right or left from its position. As we considered that each random variable follows an uniform probabilistic distribution, it is equipossible to move in any of these directions, with a probability of $ \frac{1}{4} $ each.
Allowed directions

Now, we can compute, the probability that the worm is at position $(x_m,y_m)$ at the iteration $n+1$ as follows:

$$ P_{n+1}(x_m,y_m)\;=\;\frac{1}{4}\;\left(P_{n}(x_m,y_{m+1}) + P_{n}(x_{m+1},y_m) + P_{n}(x_m,y_{m-1}) + P_{n}(x_{m-1},y_m)\right) $$
If we now subtract $ P_{n}(x_m,y_m) $ from both sides:

$$ P_{n+1}(x_m,y_m) - P_{n}(x_m,y_m)\;=\;\frac{1}{4}\;\left(P_{n}(x_m,y_{m+1}) + P_{n}(x_{m+1},y_m) + P_{n}(x_m,y_{m-1}) + P_{n}(x_{m-1},y_m) - 4\;P_{n}(x_m,y_m)\right) $$ $$ P_{n+1}(x_m,y_m) - P_{n}(x_m,y_m)\;=\;\frac{1}{4}\;\left(P_{n}(x_{m+1},y_m) - 2\;P_{n}(x_m,y_m) + P_{n}(x_{m-1},y_m) + P_{n}(x_m,y_{m+1}) - 2\;P_{n}(x_m,y_m) + P_{n}(x_m,y_{m-1})\right) $$
Multiplying and dividing by $q$ (time step) and $h^2$ (space step squared) we then get:

$$ \frac{P_{n+1}(x_m,y_m) - P_{n}(x_m,y_m)}{q}\;=\;\frac{h^2}{4\;q}\;\left(\frac{P_{n}(x_{m+1},y_m) - 2\;P_{n}(x_m,y_m) + P_{n}(x_{m-1},y_m)}{h^2} + \frac{P_{n}(x_m,y_{m+1}) - 2\;P_{n}(x_m,y_m) + P_{n}(x_m,y_{m-1})}{h^2}\right) $$
And, defining the constant $D\;=\;\frac{h^2}{4\;q}$:

$$ \frac{P_{n+1}(x_m,y_m) - P_{n}(x_m,y_m)}{q}\;=\;D\;\left(\frac{P_{n}(x_{m+1},y_m) - 2\;P_{n}(x_m,y_m) + P_{n}(x_{m-1},y_m)}{h^2} + \frac{P_{n}(x_m,y_{m+1}) - 2\;P_{n}(x_m,y_m) + P_{n}(x_m,y_{m-1})}{h^2}\right) $$
That can be approximated as a Diffusion Equation, by recalling the definition for the first and second derivates:

$$\frac{\partial P}{\partial t} = D \; \left(\frac{\partial^2 P}{\partial x^2} + \frac{\partial^2 P}{\partial y^2}\right) $$


Okopinska A. (2002) Fokker-Planck equation for bistable potential in the optimized expansion. Physical review E, Volume 65, 062101