Difference between revisions of "Team:Lanzhou/Model"

Line 1: Line 1:
{{Lanzhou}}
+
{{Lanzhou/Header}}
 
<html>
 
<html>
 +
<script>
 +
$('.page__header h1').text('Modeling');
 +
let index = [3, 2];
 +
let nav_list_item = $('.mdc-temporary-drawer__content:not(".sub-nav")').children('.mdc-list-item');
 +
$(nav_list_item[index[0]]).children('.material-icons').eq(0).addClass('mdc-list-item__start-detail-color');
 +
</script>
  
 +
<div id="page__drawer-mobile-container">
 +
<nav id="mdc-tab-bar" class="mdc-tab-bar-scroller mdc-theme--dark page__drawer-mobile">
 +
<template id="temp-page-list-mobile">
 +
<a href="" class="mdc-tab mdc-ripple-surface"></a>
 +
</template>
 +
<span class="mdc-tab-bar__indicator"></span>
 +
</nav>
 +
</div>
  
 +
<main class="page__content">
 +
<p class="mdc-typography--subheading2">Our model has two branches – prediction model and statistical model. The aim of both is to help further characterize our system. </p>
 +
<p class="mdc-typography--subheading2">First model is to predict how much dsRNA should be used in real field. And the statistic models is to figure out which type dsRNA is the most ideal inhibitor to suppress target gene (We constructed three types of dsRNA) and the better way to sustain dsRNA by using Bio-clay or water as storage medium under the normal circumstance. </p>
 +
<p class="mdc-typography--subheading2">These models guided us to revise and optimize our experiments.</p>
 +
<br><hr><br>
  
<div class="clear"></div>
+
<div class="tabs">
 +
<ul>
 +
<li><a href="#article_1">Model 1</a></li>
 +
<li><a href="#article_2">Model 2</a></li>
 +
</ul>
 +
</div>
  
<div class="column full_size">
+
<nav class="page__drawer mdc-persistent-drawer">
<h1> Modeling</h1>
+
<ul class="page__drawer-list">
 +
<template id="temp-page-list-desktop">
 +
<li class="page__drawer-list__item">
 +
<a href="" class="page__drawer-list__link"></a>
 +
</li>
 +
</template>
 +
<!-- Use template tag to generate these link -->
 +
</ul>
 +
</nav>
  
<p>Mathematical models and computer simulations provide a great way to describe the function and operation of BioBrick Parts and Devices. Synthetic Biology is an engineering discipline, and part of engineering is simulation and modeling to determine the behavior of your design before you build it. Designing and simulating can be iterated many times in a computer before moving to the lab. This award is for teams who build a model of their system and use it to inform system design or simulate expected behavior in conjunction with experiments in the wetlab.</p>
+
<article id="article_1" class="page__article">
 +
<h1 class="mdc-typography--headline">Background and motivation</h1>
 +
<p class="mdc-typography--body2">
 +
We wish our Bio-pesticide project could be applied in the real crop field one day. And for this vision, we want to know the possible efficiency and cost of our Bio-pesticide to optimize our project and make it closer to the application.
 +
</p>
 +
<p class="mdc-typography--body2">
 +
Different fields vary in acreage and weeds amount, based on these variates, we predicted proper dsRNA dosage in certain area fields and the cost of it.
 +
</p>
 +
 +
<h1 class="mdc-typography--headline">Methodology</h1>
 +
<p class="mdc-typography--body2">
 +
We use a formula to describe relationship between area and dsRNA dosage:
 +
\[ W_{dsRNA} = S_{field}\frac{V_{plant}}{V_{field}} \times P \times \vartheta \]
 +
</p>
 +
<ul>Where
 +
<li>\( W_{dsRNA} = \) total mass of dsRNA should be used</li>
 +
<li>\( S_{field} = \) area of land</li>
 +
<li>\( V_{plant} = \) water consumption of per plant</li>
 +
<li>\( P = \) the amount of weeds in unit area</li>
 +
<li>\( \vartheta = \) the minimum dosage of dsRNA to kill weed</li>
 +
</ul>
 +
<p class="mdc-typography--body2">
 +
Thanks to our human practice work, we got many useful data, like the plant water consumption and the total number of weeds per mu (0.0667 hectares)
 +
</p>
 +
<p class="mdc-typography--body2">
 +
By the assumption that 133pg/L dsRNA can effectively suppress the expression of target gene confidence interval [2].
 +
</p>
 +
<figure>
 +
<div id="container-1"></div>
 +
<figcaption>Figure 1. Water consumption among different crops and different irrigation method.</figcaption>
 +
</figure>
 +
<p class="mdc-typography--body2">
 +
Meanwhile, water absorption of each plant can be represented by this formula:
 +
\[ V_{plant} = ET_c + C_w \]
 +
</p>
 +
<ul>Where
 +
<li>\( ET_c = \) Crop transpiration rate</li>
 +
<li>\( C_w = \) Plant water consumption</li>
 +
</ul>
 +
<p class="mdc-typography--body2">
 +
What known is plant water consumption \( C_w \) is much less than RCE, so we simplify the formula to:
 +
\[ V_{plant} = ET_c \]
 +
Based on the Penman computing method and the data from China Meteorological Observatory (CMO), we use equation set to compute the \( ET_c \) in China.
 +
</p>
 +
<p class="mdc-typography--body2">
 +
Plant transpiration, ETc, can be determined by transpiration of reference plant, ET0 and transpiration coefficient, Kc. The method of calculating ETc is following:
 +
\[ ET_c = ET_0 \times K_c \]
 +
We use Penman-Monteith formula to calculate transpiration of reference plant.
 +
\[ ET_0 = \frac{0.408\Delta (R_n-G)+\gamma \frac{37}{T_{day}}u_2(e_s-e_a)}{\Delta + \gamma(1+0.34u_2)} \]
 +
</p>
 +
<ul>Where
 +
<li>\( ET_0 = \) Transpiration of reference plant in one day</li>
 +
<li>\( R_n = \) Average net radiation in one day</li>
 +
<li>\( G = \) Soil heat flux</li>
 +
<li>\( T_{day} = \) Average temperature in one day</li>
 +
<li>\( u_2 = \) Average wind speed at the height of meters</li>
 +
<li>\( E_s = \) Saturated vapor pressure</li>
 +
<li>\( e_a = \) Actual vapor pressure</li>
 +
<li>\( \Delta = \) Slope of saturation vapour pressure curve at air temperature</li>
 +
<li>\( \gamma = \) Psychrometric constant</li>
 +
</ul>
 +
<p class="mdc-typography--body2">
 +
In formula, \( T \) and \( u_2 \) can be determined by mesure, \( (e_s-e_a), \gamma, \Delta, G \) can be calculated by parameter. \( G \) , in general, is considered to be 0.5 times \( R_n \) in the evening, 0.1 times \( R_n \) in the day.
 +
</p>
 +
<p class="mdc-typography--body2">
 +
\( \gamma \) is related to atmospheric pressure. We can get it by following equation:
 +
\[ \gamma = 0.665 \times 10^{-3} \times 101.3(\frac{293-0.0065z}{293})^{5.26} \]
 +
where \( z \) is Altitude.
 +
</p>
 +
<p class="mdc-typography--body2">
 +
Saturated vapor pressure, \( e_s \), can be get by the following equatiin:
 +
\[ e_s = e^0(T_{day})=0.6108exp[\frac{17.27T_{day}}{T_{day}+237.3}] \]
 +
</p>
 +
<p class="mdc-typography--body2">
 +
Actual vapor pressure, \( e_a \), can be get by the following equation:
 +
\[ e_a=e^0(T_{day})\frac{RH_{mean}}{100} \]
 +
Where \( H_{mean} \) is average air humidity in one day
 +
</p>
 +
<p class="mdc-typography--body2">
 +
Slope of saturation vapour pressure curve at air temperature, \( \Delta \), can be get bu the following equation:
 +
\[ \Delta=\frac{4098[0.6108exp(\frac{17.27T_{day}}{T_{day}+237.3})]}{(T_{day}+237.3)^2} \]
 +
</p>
 +
<p class="mdc-typography--body2">
 +
Average net radiation in one day, Rn, is the difference between the incoming net shortwave radiation (\(R_{ns}\)) and the outgoing net longwave radiation (\(R_{nl}\)):
 +
\[ R_n=R_{ns}-R_{nl} \]
 +
</p>
 +
<p class="mdc-typography--body2">
 +
Net shortwave radiation, \(R_{ns}\) and net longwave radiation, \(R_{nl}\), can be calculated by the following equation:
 +
\[ R_{ns}=(1-\alpha)R_s \]
 +
\[ R_{nl}=\sigma[\frac{T_{day}^4}{2}](0.34-0.14\sqrt{e_a})(1.35\frac{R_s}{(0.75+2\times 10^{-5})R_a} - 0.35) \]
 +
\[ R_a=\frac{12(60)}{\pi}G_{sc}d_r[(\omega_2-\omega_1)sin(\varphi)sin(\delta)+cos(\varphi)cons(\delta)(sin(\omega_2)-sin(\omega_1))] \]
 +
</p>
 +
<ul>Where
 +
<li>\(R_a = \) Extraterrestrial radiation</li>
 +
<li>\( G_{sc} = \) Solar constant</li>
 +
<li>\( d_r = \) Inverse relative distance Earth-Sun</li>
 +
<li>\( d = \) Solar declination [rad]</li>
 +
<li>\( j = \) Latitude [rad]</li>
 +
<li>\( \omega_1 = \) Solar time angle at beginning of period [rad]</li>
 +
<li>\( \omega_2 = \) Solar time angle at end of period [rad]</li>
 +
</ul>
  
</div>
+
<h1 class="mdc-typography--headline">Results</h1>
<div class="clear"></div>
+
<p class="mdc-typography--body2">
 +
Through modelling, we got the application amount of dsRNA in different areas of China.
 +
</p>
 +
<p class="mdc-typography--body2">
 +
So farmers could use this data to decide the water need, and the real dosage of certain plant rely on crop kinds.
 +
</p>
 +
<figure>
 +
<img src="image/model/figure2.jpg" alt="">
 +
<figcaption>Figure 2. dsRNA application dosage in China</figcaption>
 +
</figure>
  
<div class="column half_size">
+
<h1 class="mdc-typography--headline">Discussion</h1>
<h3> Gold Medal Criterion #3</h3>
+
<p class="mdc-typography--body2">
<p>
+
It could be clearly seen the usage of dsRNA in major grain producing areas of China (North China Plain, Northeast China Plain and Yangtze Plain, Middle and Lower) are maximum about 10.16-15.77mg/mu. This result has a guiding significance to our experiments and improved our application design.
To complete for the gold medal criterion #3, please describe your work on this page and fill out the description on your <a href="https://2017.igem.org/Judging/Judging_Form">judging form</a>. To achieve this medal criterion, you must convince the judges that your team has gained insight into your project from modeling. You may not convince the judges if your model does not have an effect on your project design or implementation.  
+
</p>
</p>
+
  
<p>
+
<hr>
Please see the <a href="https://2017.igem.org/Judging/Medals"> 2017 Medals Page</a> for more information.
+
<h1 class="mdc-typography--headline">Reference</h1>
</p>
+
<ul class="page__article__citations">
</div>
+
<li class="page__article__citation__item">
 +
[1] S Tabor, CC Richardson. T7 DNA polymerase 1990
 +
</li>
 +
<li class="page__article__citation__item">
 +
[2] Joga et al. - 2016 - RNAi Efficiency , Systemic Properties , and Novel Delivery Methods for Pest Insect Control What We Know So Far
 +
</li>
 +
<li class="page__article__citation__item">
 +
[3] H huang et al -1957-2012- The reference crop evapotranspiration quantity of space analysis
 +
</li>
 +
</ul>
 +
</article>
  
<div class="column half_size">
+
<article id="article_2" class="page__article"></article>
<h3>Best Model Special Prize</h3>
+
</main>
 
+
<script>
<p>
+
let chart_4 = new Highcharts.Chart('container-1', {
To compete for the <a href="https://2017.igem.org/Judging/Awards">Best Model prize</a>, please describe your work on this page  and also fill out the description on the <a href="https://2017.igem.org/Judging/Judging_Form">judging form</a>. Please note you can compete for both the gold medal criterion #3 and the best model prize with this page.
+
title: {
<br><br>
+
text: '',
You must also delete the message box on the top of this page to be eligible for the Best Model Prize.
+
},
</p>
+
xAxis: {
 
+
categories: [
</div>
+
'vegetables',
<div class="clear"></div>
+
'rice',
 
+
'spring wheat',
<div class="column full_size">
+
'winter wheat'
<h5> Inspiration </h5>
+
],
<p>
+
},
Here are a few examples from previous teams:
+
series: [{
</p>
+
type: 'column',
<ul>
+
name: 'Flooding irrigation',
<li><a href="https://2016.igem.org/Team:Manchester/Model">Manchester 2016</a></li>
+
data: [0.625, 0.4, 0.5, 0.4],
<li><a href="https://2016.igem.org/Team:TU_Delft/Model">TU Delft 2016  </li>
+
},{
<li><a href="https://2014.igem.org/Team:ETH_Zurich/modeling/overview">ETH Zurich 2014</a></li>
+
type: 'column',
<li><a href="https://2014.igem.org/Team:Waterloo/Math_Book">Waterloo 2014</a></li>
+
name: 'Sprinkling irrigation',
</ul>
+
data: [0.3, 0.25, 0.32, 0.25],
 
+
},{
 
+
type: 'column',
</div>
+
name: 'Trickle irrigation',
 +
data: [0.2, 0.2, 0.24, 0.2],
 +
},]
 +
});
 +
</script>
  
 
</html>
 
</html>
 +
{{Lanzhou/Footer}}

Revision as of 15:26, 26 October 2017

Lanzhou

Lanzhou2017

Our model has two branches – prediction model and statistical model. The aim of both is to help further characterize our system.

First model is to predict how much dsRNA should be used in real field. And the statistic models is to figure out which type dsRNA is the most ideal inhibitor to suppress target gene (We constructed three types of dsRNA) and the better way to sustain dsRNA by using Bio-clay or water as storage medium under the normal circumstance.

These models guided us to revise and optimize our experiments.




Background and motivation

We wish our Bio-pesticide project could be applied in the real crop field one day. And for this vision, we want to know the possible efficiency and cost of our Bio-pesticide to optimize our project and make it closer to the application.

Different fields vary in acreage and weeds amount, based on these variates, we predicted proper dsRNA dosage in certain area fields and the cost of it.

Methodology

We use a formula to describe relationship between area and dsRNA dosage: \[ W_{dsRNA} = S_{field}\frac{V_{plant}}{V_{field}} \times P \times \vartheta \]

    Where
  • \( W_{dsRNA} = \) total mass of dsRNA should be used
  • \( S_{field} = \) area of land
  • \( V_{plant} = \) water consumption of per plant
  • \( P = \) the amount of weeds in unit area
  • \( \vartheta = \) the minimum dosage of dsRNA to kill weed

Thanks to our human practice work, we got many useful data, like the plant water consumption and the total number of weeds per mu (0.0667 hectares)

By the assumption that 133pg/L dsRNA can effectively suppress the expression of target gene confidence interval [2].

Figure 1. Water consumption among different crops and different irrigation method.

Meanwhile, water absorption of each plant can be represented by this formula: \[ V_{plant} = ET_c + C_w \]

    Where
  • \( ET_c = \) Crop transpiration rate
  • \( C_w = \) Plant water consumption

What known is plant water consumption \( C_w \) is much less than RCE, so we simplify the formula to: \[ V_{plant} = ET_c \] Based on the Penman computing method and the data from China Meteorological Observatory (CMO), we use equation set to compute the \( ET_c \) in China.

Plant transpiration, ETc, can be determined by transpiration of reference plant, ET0 and transpiration coefficient, Kc. The method of calculating ETc is following: \[ ET_c = ET_0 \times K_c \] We use Penman-Monteith formula to calculate transpiration of reference plant. \[ ET_0 = \frac{0.408\Delta (R_n-G)+\gamma \frac{37}{T_{day}}u_2(e_s-e_a)}{\Delta + \gamma(1+0.34u_2)} \]

    Where
  • \( ET_0 = \) Transpiration of reference plant in one day
  • \( R_n = \) Average net radiation in one day
  • \( G = \) Soil heat flux
  • \( T_{day} = \) Average temperature in one day
  • \( u_2 = \) Average wind speed at the height of meters
  • \( E_s = \) Saturated vapor pressure
  • \( e_a = \) Actual vapor pressure
  • \( \Delta = \) Slope of saturation vapour pressure curve at air temperature
  • \( \gamma = \) Psychrometric constant

In formula, \( T \) and \( u_2 \) can be determined by mesure, \( (e_s-e_a), \gamma, \Delta, G \) can be calculated by parameter. \( G \) , in general, is considered to be 0.5 times \( R_n \) in the evening, 0.1 times \( R_n \) in the day.

\( \gamma \) is related to atmospheric pressure. We can get it by following equation: \[ \gamma = 0.665 \times 10^{-3} \times 101.3(\frac{293-0.0065z}{293})^{5.26} \] where \( z \) is Altitude.

Saturated vapor pressure, \( e_s \), can be get by the following equatiin: \[ e_s = e^0(T_{day})=0.6108exp[\frac{17.27T_{day}}{T_{day}+237.3}] \]

Actual vapor pressure, \( e_a \), can be get by the following equation: \[ e_a=e^0(T_{day})\frac{RH_{mean}}{100} \] Where \( H_{mean} \) is average air humidity in one day

Slope of saturation vapour pressure curve at air temperature, \( \Delta \), can be get bu the following equation: \[ \Delta=\frac{4098[0.6108exp(\frac{17.27T_{day}}{T_{day}+237.3})]}{(T_{day}+237.3)^2} \]

Average net radiation in one day, Rn, is the difference between the incoming net shortwave radiation (\(R_{ns}\)) and the outgoing net longwave radiation (\(R_{nl}\)): \[ R_n=R_{ns}-R_{nl} \]

Net shortwave radiation, \(R_{ns}\) and net longwave radiation, \(R_{nl}\), can be calculated by the following equation: \[ R_{ns}=(1-\alpha)R_s \] \[ R_{nl}=\sigma[\frac{T_{day}^4}{2}](0.34-0.14\sqrt{e_a})(1.35\frac{R_s}{(0.75+2\times 10^{-5})R_a} - 0.35) \] \[ R_a=\frac{12(60)}{\pi}G_{sc}d_r[(\omega_2-\omega_1)sin(\varphi)sin(\delta)+cos(\varphi)cons(\delta)(sin(\omega_2)-sin(\omega_1))] \]

    Where
  • \(R_a = \) Extraterrestrial radiation
  • \( G_{sc} = \) Solar constant
  • \( d_r = \) Inverse relative distance Earth-Sun
  • \( d = \) Solar declination [rad]
  • \( j = \) Latitude [rad]
  • \( \omega_1 = \) Solar time angle at beginning of period [rad]
  • \( \omega_2 = \) Solar time angle at end of period [rad]

Results

Through modelling, we got the application amount of dsRNA in different areas of China.

So farmers could use this data to decide the water need, and the real dosage of certain plant rely on crop kinds.

Figure 2. dsRNA application dosage in China

Discussion

It could be clearly seen the usage of dsRNA in major grain producing areas of China (North China Plain, Northeast China Plain and Yangtze Plain, Middle and Lower) are maximum about 10.16-15.77mg/mu. This result has a guiding significance to our experiments and improved our application design.


Reference

  • [1] S Tabor, CC Richardson. T7 DNA polymerase 1990
  • [2] Joga et al. - 2016 - RNAi Efficiency , Systemic Properties , and Novel Delivery Methods for Pest Insect Control What We Know So Far
  • [3] H huang et al -1957-2012- The reference crop evapotranspiration quantity of space analysis