Team:Peking/Modeling/Phototaxis/PDE

From 2012.igem.org

(Difference between revisions)
m
m
Line 10: Line 10:
  <h3 id="title1">Introduction</h3>
  <h3 id="title1">Introduction</h3>
  <p>
  <p>
-
Based on the previous model basis, we are about to view the magic of phototaxis on macro level. What we expected is to make light as a pointer to send information to the cells. If we give a bright area, we will expect to see cells gather together to this area. In order to judge whether this wish comes true, we contructed a simulation platform for dynamic system on a plane and tracked the process of population variance based on Mean-field approximation.
+
Based on the previous model basis, we are about to view the magic of phototaxis on the macro level. We expected to make light as a pointer. If we give a bright area, cells should gather together to this area. In order to verify this expectation, we contructed a simulation platform for dynamic system on a plane and tracked the process of population variance based on Mean-field approximation.
  </p>
  </p>
</div>
</div>
Line 21: Line 21:
   <img src="/wiki/images/d/db/Peking2012_Formula003.png" alt="" style="width:400px;"/>
   <img src="/wiki/images/d/db/Peking2012_Formula003.png" alt="" style="width:400px;"/>
  </div>
  </div>
-
<p>
 
  <p>
  <p>
and showed the linkage between the cells' population level motility factor &mu;<sub>0</sub> and [CheY<sub>P</sub>] with<sup><a href="#ref1" title="Si, G., Wu, T., Ouyang, Q., Tu, Y.(2012) Pathway-based Mean-field Model for Escherichia coli Chemotaxis. Phys. Rev. Lett., 109: 048101">[1]</a>,<a href="#ref2" title="Jiang, L., Ouyang, Q., Tu, Y.(2010) Quantitative Modeling ofEscherichia coli Chemotactic Motion in Environments Varying in Space and Time. PLoS Comput. Biol., 6: e1000735">[2]</a></sup>
and showed the linkage between the cells' population level motility factor &mu;<sub>0</sub> and [CheY<sub>P</sub>] with<sup><a href="#ref1" title="Si, G., Wu, T., Ouyang, Q., Tu, Y.(2012) Pathway-based Mean-field Model for Escherichia coli Chemotaxis. Phys. Rev. Lett., 109: 048101">[1]</a>,<a href="#ref2" title="Jiang, L., Ouyang, Q., Tu, Y.(2010) Quantitative Modeling ofEscherichia coli Chemotactic Motion in Environments Varying in Space and Time. PLoS Comput. Biol., 6: e1000735">[2]</a></sup>
Line 29: Line 28:
  </div>
  </div>
  <p>where</p><ul><li>
  <p>where</p><ul><li>
-
v<sub>0</sub> : average running speed</li><li>
+
v<sub>0</sub> : average running velocity</li><li>
z<sub>&theta;</sub> : a const rate</li><li>
z<sub>&theta;</sub> : a const rate</li><li>
&tau; : average time in a running</li></ul>
&tau; : average time in a running</li></ul>
  <p>
  <p>
-
Since f<sub>0</sub> only relates to the chemical signal in chemotaxis system, we consider it constant in our phototaxis system. Besides, we would like to add the growth function to the equation to approach the real situation. Due to the light to the system, the &mu;<sub>0</sub> is not constant any more (thus we denote &mu;<sub>0</sub> as &mu;). Therefore, the previous equation becomes
+
Since f<sub>0</sub> only relates to the chemical signal in chemotaxis system, we consider it constant in our phototaxis system. Besides, we would like to add the growth function to the equation to approach the real situation. Due to the light to the system, the &mu;<sub>0</sub> is not constant any more (thus we denote &mu;<sub>0</sub> as &mu;). After some derivation, the previous equation should become
  </p>
  </p>
  <div class="floatC">
  <div class="floatC">
Line 44: Line 43:
g : growth rate</li></ul>
g : growth rate</li></ul>
  <p>
  <p>
-
Theoretic analysis shows that the final state of this system would be
+
Theoretic analysis shows that the equilibrium state of the density distribution should be
  </p>
  </p>
  <div class="floatC">
  <div class="floatC">
Line 56: Line 55:
  <h3 id="title3">Simulation on Hexagonal Mesh</h3>
  <h3 id="title3">Simulation on Hexagonal Mesh</h3>
  <p>
  <p>
-
The equation to this system is a PDE (Partial Differential Equation). The simulation should be done with FDM (Finite Difference Method). To reduce the error caused by anisotropic mesh, we prefer using <!--<a href="/Team:Peking/Modeling/Appendix/Hexagonal">-->hexagonal mesh<!--</a>--> to quadratic mesh which is normally used.
+
This PDE (Partial Differential Equation) system is usually simulated in FDM (Finite Difference Method). To reduce the error caused by anisotropic mesh, we prefer using <!--<a href="/Team:Peking/Modeling/Appendix/Hexagonal">-->hexagonal mesh<!--</a>--> to quadratic mesh.
  <br /> <br />
  <br /> <br />
-
We constructed a FDM simulation environment in C++ for hexagonal mesh and simulated this system with it. On the boundary of the lighting area, the simulation shows high population density.
+
We constructed a FDM simulation environment in C++ for hexagonal mesh and simulated this system with it. On the boundary of the lighting area, the simulation shows that there should be high population density.
  </p>
  </p>
  <div class="floatC">
  <div class="floatC">

Revision as of 16:51, 26 September 2012

Introduction

Based on the previous model basis, we are about to view the magic of phototaxis on the macro level. We expected to make light as a pointer. If we give a bright area, cells should gather together to this area. In order to verify this expectation, we contructed a simulation platform for dynamic system on a plane and tracked the process of population variance based on Mean-field approximation.

Result from Mean-field Model

Recent paper derived the K-S chemotaxis equation based on mean-field model[1]

and showed the linkage between the cells' population level motility factor μ0 and [CheYP] with[1],[2]

where

  • v0 : average running velocity
  • zθ : a const rate
  • τ : average time in a running

Since f0 only relates to the chemical signal in chemotaxis system, we consider it constant in our phototaxis system. Besides, we would like to add the growth function to the equation to approach the real situation. Due to the light to the system, the μ0 is not constant any more (thus we denote μ0 as μ). After some derivation, the previous equation should become

where

  • ρ : population density
  • μ : population diffusion factor (cell motility)
  • g : growth rate

Theoretic analysis shows that the equilibrium state of the density distribution should be

with closed boundary conditions. The constant is independent from position. This result means that the population density in light areas is higher than in dark ones.

Simulation on Hexagonal Mesh

This PDE (Partial Differential Equation) system is usually simulated in FDM (Finite Difference Method). To reduce the error caused by anisotropic mesh, we prefer using hexagonal mesh to quadratic mesh.

We constructed a FDM simulation environment in C++ for hexagonal mesh and simulated this system with it. On the boundary of the lighting area, the simulation shows that there should be high population density.

Figure 2. Simulation in Hexagonal-coordinate environment. The circle area is illuminated with light. The cell density increases on the border of the circle area.

Figure 3. Simulation of cellular movement regulated by light. Here we use the pattern of Chinese Huabiao to regulate the cellular movement, and we see the cell's population begins to show a rough shape of the light pattern we give.

Actually, this is a temporary state phenomenum of this system. Simulation indicates that it will cost a tremendously long time to reach the final state, while temporary states are usually seen like the figure above.

Conclusion

This simulation shows that our system will link the mobility of cells with the light signal. The result shows that there will be a narrow line emerging on the boundary of lighting area as a temporary state. With this special property, this system has potential to be an edge-detection system to light in the future.

Reference

  • 1.Si, G., Wu, T., Ouyang, Q., Tu, Y.(2012) Pathway-based Mean-field Model for Escherichia coli Chemotaxis. Phys. Rev. Lett., 109: 048101
  • 2.Jiang, L., Ouyang, Q., Tu, Y.(2010) Quantitative Modeling of Escherichia coli Chemotactic Motion in Environments Varying in Space and Time. PLoS Comput. Biol., 6: e1000735
  • Totop Totop