Team:Bielefeld-Germany/Modell

From 2011.igem.org

(Difference between revisions)
(Modelling of intracellular bisphenol A degradation)
Line 8: Line 8:
[[Image:Bielefeld-Germany2011-growth.png|center|75px]]
[[Image:Bielefeld-Germany2011-growth.png|center|75px]]
-
dX/dt = µ * X
 
with the specific growth rate µ and the cell count X. The specific growth rate is dependent on the concentration of the growth limiting substrate (e.g. glucose) and can be described as  
with the specific growth rate µ and the cell count X. The specific growth rate is dependent on the concentration of the growth limiting substrate (e.g. glucose) and can be described as  
Line 15: Line 14:
[[Image:Bielefeld-Germany2011-growthrate.png|center|110px]]
[[Image:Bielefeld-Germany2011-growthrate.png|center|110px]]
-
µ = µ<sub>max</sub> S / (K<sub>S</sub> + S)
 
with the substrate concentration S, the Monod constant K<sub>S</sub> and the maximal specific growth rate µ<sub>max</sub>. Because LB medium is a complex medium we cannot measure the substrate concentration so we have to assume an imaginary substrate concentration. Due to the diauxic growth two different substrates with different Monod constants and consumption rates are necessary to model the cell growth. The amount of a substrate S can be modelled as follows
with the substrate concentration S, the Monod constant K<sub>S</sub> and the maximal specific growth rate µ<sub>max</sub>. Because LB medium is a complex medium we cannot measure the substrate concentration so we have to assume an imaginary substrate concentration. Due to the diauxic growth two different substrates with different Monod constants and consumption rates are necessary to model the cell growth. The amount of a substrate S can be modelled as follows
-
dS/dt = q<sub>S</sub> * X
 
-
with the specific substrate consumption rate per cell q<sub>S</sub>. The whole model for the diauxic growth of ''E. coli'' on LB medium with two not measurable (imaginary) substrates looks like:
+
[[Image:Bielefeld-Germany2011-substrate.png|center|75px]]
-
[[Image:Bielefeld-Germany2011-model-ecoligrowth.png|center|220px]]
 
-
{Growth}
+
with the specific substrate consumption rate per cell q<sub>S</sub>. The whole model for the diauxic growth of ''E. coli'' on LB medium with two not measurable (imaginary) substrates looks like:
-
init x = x<sub>0</sub>
 
-
 
-
x<sub>0</sub> = 0.133
 
-
 
-
dX/dt = µ * X
 
-
 
-
µ = if S<sub>1</sub> >= 0.01 then µ<sub>max</sub> * S<sub>1</sub> / (K<sub>S,1</sub> + S<sub>1</sub>) else µ<sub>max</sub> * S<sub>2</sub> / (K<sub>S,2</sub> + S<sub>2</sub>)
 
-
 
-
µ<sub>max</sub> = 1.24
 
-
 
-
K<sub>S,1</sub> = 10
 
-
 
-
K<sub>S,2</sub> = 138.7
 
-
 
-
limit µ >= 0
 
-
 
-
limit X >= 0
 
-
 
-
 
-
{Substrate 1}
 
-
 
-
init S<sub>1</sub> = S<sub>1,0</sub>
 
-
 
-
S<sub>1,0</sub> = 6
 
-
 
-
dS<sub>1</sub>/dt = -q<sub>S,1</sub> * X
 
-
 
-
q<sub>S,1</sub> = 1.4
 
-
 
-
limit S<sub>1</sub> >= 0
 
-
 
-
 
-
{Substrate 2}
 
-
 
-
init S<sub>2</sub> = S<sub>2,0</sub>
 
-
 
-
S<sub>2,0</sub> = 10
 
-
 
-
dS<sub>2</sub>/dt = if S<sub>1</sub> >= 0.01 then 0 else -q<sub>S,2</sub> * X
 
-
 
-
q<sub>S,2</sub> = 0.32
 
-
 
-
limit S<sub>2</sub> >= 0
 
 +
[[Image:Bielefeld-Germany2011-model-ecoligrowth.png|center|220px]]
Line 77: Line 31:
[[Image:Bielefeld-Germany2011-model-ecoliBPA.png|center|220px]]
[[Image:Bielefeld-Germany2011-model-ecoliBPA.png|center|220px]]
-
 
-
 
-
{BPA degradation}
 
-
 
-
init BPA = BPA<sub>0</sub>
 
-
 
-
BPA<sub>0</sub> = 0.53
 
-
 
-
dBPA/dt = if S<sub>1</sub> >= 0.01 then 0 else -q<sub>D</sub> * X
 
-
 
-
q<sub>D</sub> = q<sub>D,max</sub> * BPA / (K<sub>BPA</sub> + BPA)
 
-
 
-
q<sub>D,max</sub> = 0.013
 
-
 
-
K<sub>BPA</sub> = 1.6e-8
 
-
 
-
limit BPA >= 0
 
The modelling was done with the software [http://www.berkeleymadonna.com/ Berkeley Madonna] using [http://en.wikipedia.org/wiki/Runge–Kutta_methods#Common_fourth-order_Runge.E2.80.93Kutta_method common fourth-order Runge-Kutta] method to solve the equations. The model was fitted to the measured data by the function "curve fit" in Berkeley Madonna to calculate the constants etc.
The modelling was done with the software [http://www.berkeleymadonna.com/ Berkeley Madonna] using [http://en.wikipedia.org/wiki/Runge–Kutta_methods#Common_fourth-order_Runge.E2.80.93Kutta_method common fourth-order Runge-Kutta] method to solve the equations. The model was fitted to the measured data by the function "curve fit" in Berkeley Madonna to calculate the constants etc.

Revision as of 13:29, 6 September 2011

Modelling of intracellular bisphenol A degradation

To model the BPA degradation by E. coli carrying BioBricks for BPA degradation (<partinfo>K123000</partinfo> and <partinfo>K123001</partinfo>) the cell growth has to be described first. The observed growth of E. coli on (our) LB medium was [http://en.wikipedia.org/wiki/Diauxie diauxic] with two different growth phases. Cell growth is a [http://en.wikipedia.org/wiki/First_order_kinetics#First-order_reactions first-order reaction] and is mathematically described as


Bielefeld-Germany2011-growth.png


with the specific growth rate µ and the cell count X. The specific growth rate is dependent on the concentration of the growth limiting substrate (e.g. glucose) and can be described as


Bielefeld-Germany2011-growthrate.png


with the substrate concentration S, the Monod constant KS and the maximal specific growth rate µmax. Because LB medium is a complex medium we cannot measure the substrate concentration so we have to assume an imaginary substrate concentration. Due to the diauxic growth two different substrates with different Monod constants and consumption rates are necessary to model the cell growth. The amount of a substrate S can be modelled as follows


Bielefeld-Germany2011-substrate.png


with the specific substrate consumption rate per cell qS. The whole model for the diauxic growth of E. coli on LB medium with two not measurable (imaginary) substrates looks like:


Bielefeld-Germany2011-model-ecoligrowth.png


The specific BPA degradation rate per cell qD is modelled with a Michaelis-Menten like kinetics. In the beginning of the cultivations, when E. coli growths on the "good" imaginary substrate S1, there is no BPA degradation observed. When this substrate is consumed, the BPA degradation starts so the model looks like as follows:


Bielefeld-Germany2011-model-ecoliBPA.png


The modelling was done with the software [http://www.berkeleymadonna.com/ Berkeley Madonna] using [http://en.wikipedia.org/wiki/Runge–Kutta_methods#Common_fourth-order_Runge.E2.80.93Kutta_method common fourth-order Runge-Kutta] method to solve the equations. The model was fitted to the measured data by the function "curve fit" in Berkeley Madonna to calculate the constants etc.