Team:Valencia UPV/Modeling/diffusion

From 2014.igem.org

(Difference between revisions)
Line 1: Line 1:
{{:Team:Valencia_UPV/header}}
{{:Team:Valencia_UPV/header}}
{{:Team:Valencia_UPV/style_equations}}
{{:Team:Valencia_UPV/style_equations}}
-
 
<html>
<html>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
-
<div align="center"><div id="cn-box" align="justify"></br>
+
<div align="center"><div id="cn-box" align="justify">
-
 
+
<h3 class="hook" align="left"><a href="https://2014.igem.org/Team:Valencia_UPV/Modeling">Modeling</a> > <a href="https://2014.igem.org/Team:Valencia_UPV/Modeling/diffusion">Pheromone Diffusion</a></h3></p></br>
-
<div align="center"><img class="img-title" alt="Diffusion" src="https://static.igem.org/mediawiki/2014/8/82/VUPVDiffusion.png"></img></div><br/>
+
 +
<div align="center"><span class="coda"><roja>P</roja>heromone <roja>D</roja>iffusion and <roja>M</roja>oths <roja>R</roja>esponse</span> </div>
 +
</br></br>
<div class="tabs">
<div class="tabs">
     <ul class="tab-links">
     <ul class="tab-links">
Line 19: Line 19:
     <div class="tab-content">
     <div class="tab-content">
         <div id="tab1" class="tab active">
         <div id="tab1" class="tab active">
-
 
+
<p> Sexually communication among moths is accomplished chemically by the release of an “odor” into the air. This “odor” is the <span class="black-bold">sexual pheromones</span></p>
             <p>Sexually communication among moths is accomplished chemically by the release of an “odor”: sexual pheromones.  Pheromones are molecules that can be carried by a diffusion process in which the random movement of gas molecules transport the chemical away from its source.  Pheromone chemicals obey to the diffusion equation, resulting in a straightforward application of the mathematics of a diffusing source. (referencia Lecture 9)</p><br/>
             <p>Sexually communication among moths is accomplished chemically by the release of an “odor”: sexual pheromones.  Pheromones are molecules that can be carried by a diffusion process in which the random movement of gas molecules transport the chemical away from its source.  Pheromone chemicals obey to the diffusion equation, resulting in a straightforward application of the mathematics of a diffusing source. (referencia Lecture 9)</p><br/>
<p>The equation of diffusion that we will use in this project to model the pheromones dispersion will adopt the form of the heat equation, and will be solved by the Euler numeric approximation. <a class="normal-link-page" href="#">See more about heat equation and mathematical expressions for Euler method.</a></p><br/>
<p>The equation of diffusion that we will use in this project to model the pheromones dispersion will adopt the form of the heat equation, and will be solved by the Euler numeric approximation. <a class="normal-link-page" href="#">See more about heat equation and mathematical expressions for Euler method.</a></p><br/>

Revision as of 19:09, 13 October 2014

Modeling > Pheromone Diffusion


Pheromone Diffusion and Moths Response


Sexually communication among moths is accomplished chemically by the release of an “odor” into the air. This “odor” is the sexual pheromones

Sexually communication among moths is accomplished chemically by the release of an “odor”: sexual pheromones. Pheromones are molecules that can be carried by a diffusion process in which the random movement of gas molecules transport the chemical away from its source. Pheromone chemicals obey to the diffusion equation, resulting in a straightforward application of the mathematics of a diffusing source. (referencia Lecture 9)


The equation of diffusion that we will use in this project to model the pheromones dispersion will adopt the form of the heat equation, and will be solved by the Euler numeric approximation. See more about heat equation and mathematical expressions for Euler method.


Moths seem to respond to gradients of pheromone concentration attracted towards the source, although there are other factors that lead moths sexually to pheromone sources such as optomotor anemotaxis (J. N. Perry and C. Wall , A Mathematical Model for the Flight of Pea Moth to Pheromone Traps Through a Crop). However, increasing the pheromone concentration to unnaturally high levels may disrupt male orientation (W. L. Roelofs and R. T. Carde, Responses of Lepidoptera to synthetic sex pheromone chemicals and their analogues). See more about model for moth flight.


The pheromone diffusion process and moth behavior when they are in presence of our synthetic plants acting as continuously-emitting sources, are modeled in Netlogo.

NetLogo is an agent-based programming language and integrated modeling environment. NetLogo is free and open source software, under a GPL license.

NetLogo is an agent-based programming language and integrated modeling environment. NetLogo is free and open source software, under a GPL license.

The diffusion equation is a partial differential equation which describes density dynamics in a material undergoing diffusion. It is also used to describe processes exhibiting diffusive-like behavior, like in our case.

The equation is usually written as:

$$\frac{\partial \phi (r,t) }{\partial t} = \nabla · [D(\phi,r) \nabla \phi(r,t)],$$

where $\phi(r, t)$ is the density of the diffusing material at location r and time t and $D(\phi, r)$ is the collective diffusion coefficient for density $\phi$ at location $r$; and $\nabla$ represents the vector differential operator.

If the diffusion coefficient does not depend on the density then the equation is linear and $D$ is constant. Thus, the equation reduces to the following linear differential equation: $$\frac{\partial \phi (r,t) }{\partial t} = D \nabla^2 \phi(r,t)$$

also called the heat equation.

Making use of this equation we can write pheromones chemicals diffusion equation with no wind effect consideration as:

$$\frac{\partial c }{\partial t} = D \Delta c,$$

where C is the pheromone concentration, $\nabla$ is the Laplacian operator, and $D$ is the pheromone diffusion constant in air.

If we consider the wind, we face a diffusion system with drift and an advection term is added to the equation above.

$$\frac{\partial c }{\partial t} = \nabla \cdot (D\nabla c)- \nabla \cdot (\vec{v} c ),$$

where $\vec{v}$ is the average velocity that the quantity is moving. Thus, $\vec{v}$ would be the velocity of the air flow.

For simplicity, we are not going to consider the third dimension. In $2D$ the equation would be:

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

For determining a numeric solution for this partial differential equation are used the so-called finite difference methods. The technic consists in approximating differential ratios as $h$ is closer to zero, so are useful to approximate differential equations.

With finite difference methods, partial differential equations are replaced by its approximations in finite differences, resulting in an algebraic equations system. The algebraic equations system is solved in each node $(x_i,y_j,t_k)$. These discrete values describe the temporal and spatial distribution of the unknown function.

Although implicit methods are unconditionally stable so time steps could be larger and make the calculus process faster, the tool we have used to solve our heat equation is the Euler explicit method.


JUSTIFICATION

Euler explicit method is the simplest option to approximate spatial derivatives, in which all values are assumed at the beginning of Time.

The equation gives the new value of the pheromone level in terms of initial values in that node and its immediate neighbors. Since all these values are known the process is called explicit.


$$y(t_{i+1}) = y(t_i) + \Delta t · y'(t_i),$$

Now applying this method for the first case (with no wind consideration) we followed the next steps.

1. Split time $t$ into $n$ slices of equal length $\Delta t$: $$ \left\{ \begin{array}{c} t_0 &=& 0 \\ t_i &=& i · \Delta t \\ t_n &=& t \end{array} \right. $$

2. Considering the backward difference for the Euler explicit method implies that the expression that refers to the current pheromone level each time step is:

$$c (x, t) \approx c (x, t - \Delta t ) + \Delta t c'(x,t)$$

3. And now considering the spatial dimension, it is applied central differences to the Laplace operator in 2D (assuming equal steps in x and y directions)

$$c (x, t) \approx c (x, t - \Delta t ) + \Delta t \cdot D \nabla c(x,t)$$