Team:Colombia/Scripting
From 2014.igem.org
(Difference between revisions)
Line 16: | Line 16: | ||
% | % | ||
%--------------------------------------------% | %--------------------------------------------% | ||
- | % | + | % VARIABLES % |
%--------------------------------------------% | %--------------------------------------------% | ||
% | % | ||
Line 68: | Line 68: | ||
% | % | ||
%--------------------------------------------% | %--------------------------------------------% | ||
- | % | + | % Equations % |
%--------------------------------------------% | %--------------------------------------------% | ||
% | % | ||
- | dCS = acs + kcd*CSa - C*CS*kcc - gcs*CS; | + | dCS = acs + kcd*CSa - C*CS*kcc - gcs*CS; % Differential equation governing the change in the concentration of the membrane bound CqsS protein (CAI-1 unbound=Inactive)through time |
- | dCSa = -kcd*CSa + C*CS*kcc - gcsa*CSa; | + | dCSa = -kcd*CSa + C*CS*kcc - gcsa*CSa; % Differential equation governing the change in the concentration of the membrane bound CqsS protein (CAI-1 bound=Active) through time |
- | dUf = U*Of*duo-Uf*O*fuo-CSa*Uf*dsu + CS*U*fsu - guf*Uf; | + | dUf = U*Of*duo-Uf*O*fuo-CSa*Uf*dsu + CS*U*fsu - guf*Uf; % Differential equation governing the change in the phosphorelay protein LuxU (phosphorylated) Concentration through time |
- | dU = au-U*Of*duo+Uf*O*fuo - CS*U*fsu + CSa*Uf*dsu -gu*U; | + | dU = au-U*Of*duo+Uf*O*fuo - CS*U*fsu + CSa*Uf*dsu -gu*U; % Differential equation governing the change in the phosphorelay protein LuxU (unphosphorylated) Concentration through time |
- | dOf = Uf*O*fuo - U*Of*duo - gof*Of; | + | dOf = Uf*O*fuo - U*Of*duo - gof*Of; % Differential equation governing the change in the phosphorelay protein LuxO (phosphorylated) Concentration through time |
- | dO = ao - Uf*O*fuo + U*Of*duo - go*O; | + | dO = ao - Uf*O*fuo + U*Of*duo - go*O; % Differential equation governing the change in the phosphorelay protein LuxO (unphosphorylated) Concentration through time |
- | dTR = atr + (btr*Of^n)/(ho^n+Of^n) - gtr*TR; | + | dTR = atr + (btr*Of^n)/(ho^n+Of^n) - gtr*TR; % Differential equation governing the change in the ptet Repressor protein concentration through time |
- | dTA = ata + bta/((1+TR/TA)+(htr/TA)) - gta*TA; | + | dTA = ata + bta/((1+TR/TA)+(htr/TA)) - gta*TA; % Differential equation governing the change in the ptet Activator protein concentration through time |
- | dR = ar + br/((1+TR/TA)+(htr/TA)) - gr*R; | + | dR = ar + br/((1+TR/TA)+(htr/TA)) - gr*R; % Differential equation governing the change in the response molecule concentration through time |
% | % | ||
y(1)=dCS; % | y(1)=dCS; % |
Revision as of 00:44, 16 October 2014
= Scripting =
== RALSTONIA DIFFERENTIAL EQUATION SOLUTION ==