Team:ZJU-China/model s2 1.htm

From 2012.igem.org

(Difference between revisions)
(Created page with "<html xmlns="http://www.w3.org/1999/xhtml" class="cufon-active cufon-ready"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HOME</title> <link ...")
Line 116: Line 116:
{
{
   font-family: Arial, sans-serif;
   font-family: Arial, sans-serif;
 +
  font-size:16px
 +
}
 +
/********************modified by MQ*********************/
 +
p.fig{
 +
  color: #573D01;
 +
  padding: 15px 15px;
 +
  font-size: 15.5px;
 +
  font-family: "Calibri","sans-serif";
 +
  align: justify;
 +
}
 +
p.ref{
 +
  color: black;
 +
  padding: 15px 15px;
 +
  font-size: 15.5px;
 +
  font-family: "Calibri","sans-serif";
 +
  align: justify;
 +
}
 +
b.blue{
 +
  color: #0080FF;
}
}
Line 210: Line 229:
<body class="home">
<body class="home">
-
 
+
<h2>Preperation</h2>
-
<h2>Simplification</h2>
+
<h3>Simplification</h3>
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
<p align="justify">We simplify our abstract model as a pathway A -> B -> C. Enzyme one (E1) catalyzes the reaction A -> B and enzyme two (E2) catalyzes the reaction B -> C. The reaction equation is:</p>
<p align="justify">We simplify our abstract model as a pathway A -> B -> C. Enzyme one (E1) catalyzes the reaction A -> B and enzyme two (E2) catalyzes the reaction B -> C. The reaction equation is:</p>
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
-
<p align="justify">`A \leftrightarrow B \leftrightarrow C`</p>
+
<div class="floatC">
 +
<p align="justify">A &harr; B &harr; C</p>
 +
</div>
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
<p align="justify">Molecular motion is continuous and complex so that it is difficult to model precisely. As a simplification, it is reasonable to discretize the continuous time as discrete steps and simplify the molecular Brownian motion as three-dimensional random walking. With this simplification, we can approximately observe the process of reaction and the reaction rate. Therefore, we present algorithms to simulate the process of molecular reaction dynamically and intuitionally.</p>
<p align="justify">Molecular motion is continuous and complex so that it is difficult to model precisely. As a simplification, it is reasonable to discretize the continuous time as discrete steps and simplify the molecular Brownian motion as three-dimensional random walking. With this simplification, we can approximately observe the process of reaction and the reaction rate. Therefore, we present algorithms to simulate the process of molecular reaction dynamically and intuitionally.</p>
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
-
<h2>Algorithm</h2>
+
 
-
<p align="justify">&nbsp;</p>
+
<h3>Assumptions</h3>
-
<p align="justify">In order to simulate the molecular motion and verify the fact that a RNA scaffold with two enzymes can speed reactions of the pathway, we simplify the complex realistic situation as a simple and virtual three dimensional world.</p>
+
-
<p align="justify">&nbsp;</p>
+
-
<h2>Assumptions:</h2>
+
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
<p align="justify">1. The container is a cube and we assumed a unit. The edge of the cube is an integral multiple of one unit.</p>
<p align="justify">1. The container is a cube and we assumed a unit. The edge of the cube is an integral multiple of one unit.</p>
-
<p align="justify">&nbsp;</p>
 
<p align="justify">2. The cube is in a grid pattern and all the molecules are at the grid intersections.</p>
<p align="justify">2. The cube is in a grid pattern and all the molecules are at the grid intersections.</p>
-
<p align="justify">&nbsp;</p>
 
<p align="justify">3. The molecular motion is random walking in three dimensions.</p>
<p align="justify">3. The molecular motion is random walking in three dimensions.</p>
-
<p align="justify">&nbsp;</p>
 
<p align="justify">4. The molecule cannot cross the edge of the cube.</p>
<p align="justify">4. The molecule cannot cross the edge of the cube.</p>
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
-
<h2>Algorithm:</h2>
+
 
 +
<h3>Algorithm:</h3>
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
-
<p align="justify">Initial state: All the molecules including A, E1 and E2 are randomly scattered at the intersections</p>
+
<p align="justify">In order to simulate the molecular motion and verify the fact that a RNA scaffold with two enzymes can speed reactions of the pathway, we simplify the complex realistic situation as a simple and virtual three dimensional world.</p>
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
-
<p align="justify">Step 1: Check if there is A and E1 at the same intersection. If there, B is generated and A disappears.</p>
+
<p align="justify"><b>Initial state:</b> All the molecules including A, E1 and E2 are randomly scattered at the intersections</p>
-
<p align="justify">&nbsp;</p>
+
 
-
<p align="justify">Step 2: Check if there is B and E2 at the same intersection. If there, C is generated and B disappears.</p>
+
<p align="justify"><b>Step 1:</b> Check if there is A and E1 at the same intersection. If there, B is generated and A disappears.</p>
 +
 
 +
<p align="justify"><b>Step 2:</b> Check if there is B and E2 at the same intersection. If there, C is generated and B disappears.</p>
 +
 
 +
<p align="justify"><b>Step 3:</b> All the molecules are randomly walking one unit. If the molecule is going to across the border, it will be still and does not have a walk. Then, go back to step 1.</p>
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
-
<p align="justify">Step 3: All the molecules are randomly walking one unit. If the molecule is going to across the border, it will be still and does not have a walk. Then, go back to step 1.</p>
+
 
-
<p align="justify">&nbsp;</p>
+
<h3>Implementation</h3>
-
<h2>Implementation</h2>
+
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
<p align="justify">We use the Matlab programming to construct the model and implement this algorithm, presenting the results using both data and 3D figures.</p>
<p align="justify">We use the Matlab programming to construct the model and implement this algorithm, presenting the results using both data and 3D figures.</p>

Revision as of 13:19, 25 October 2012

HOME

Preperation

Simplification

 

We simplify our abstract model as a pathway A -> B -> C. Enzyme one (E1) catalyzes the reaction A -> B and enzyme two (E2) catalyzes the reaction B -> C. The reaction equation is:

 

A ↔ B ↔ C

 

Molecular motion is continuous and complex so that it is difficult to model precisely. As a simplification, it is reasonable to discretize the continuous time as discrete steps and simplify the molecular Brownian motion as three-dimensional random walking. With this simplification, we can approximately observe the process of reaction and the reaction rate. Therefore, we present algorithms to simulate the process of molecular reaction dynamically and intuitionally.

 

Assumptions

 

1. The container is a cube and we assumed a unit. The edge of the cube is an integral multiple of one unit.

2. The cube is in a grid pattern and all the molecules are at the grid intersections.

3. The molecular motion is random walking in three dimensions.

4. The molecule cannot cross the edge of the cube.

 

Algorithm:

 

In order to simulate the molecular motion and verify the fact that a RNA scaffold with two enzymes can speed reactions of the pathway, we simplify the complex realistic situation as a simple and virtual three dimensional world.

 

Initial state: All the molecules including A, E1 and E2 are randomly scattered at the intersections

Step 1: Check if there is A and E1 at the same intersection. If there, B is generated and A disappears.

Step 2: Check if there is B and E2 at the same intersection. If there, C is generated and B disappears.

Step 3: All the molecules are randomly walking one unit. If the molecule is going to across the border, it will be still and does not have a walk. Then, go back to step 1.

 

Implementation

 

We use the Matlab programming to construct the model and implement this algorithm, presenting the results using both data and 3D figures.