Team:DTU-Denmark/script reactor 2 equation

From 2013.igem.org

(Difference between revisions)
(Created page with "== Matlab function of design equation for reactor 2 == <pre> function V = steadystate_cstr_volumeR2(f,S,P) %calculates volume of CSTR in steady state -> design equation % f = fl...")
(Matlab function of design equation for reactor 2)
 
Line 1: Line 1:
 +
{{:Team:DTU-Denmark/Templates/StartPage|}}
 +
 +
== Matlab function of design equation for reactor 2 ==
== Matlab function of design equation for reactor 2 ==
Line 15: Line 18:
V = f*P/(((kcat*E*S)/(kM+S))*0.4);  
V = f*P/(((kcat*E*S)/(kM+S))*0.4);  
</pre>
</pre>
 +
 +
{{:Team:DTU-Denmark/Templates/EndPage}}

Latest revision as of 14:26, 4 October 2013


Matlab function of design equation for reactor 2

function V = steadystate_cstr_volumeR2(f,S,P)
%calculates volume of CSTR in steady state -> design equation
% f = flow
% S = substrate concentration
% P = product concentration that will leave the reactor
% we assume that the inlet water does not contain any product

kcat = 480; %[1/min]  Nir
kM = 0.053; % [mM] Nir
E = 8.457e-4; % estimation that cells take up 40% of the volume 1000 enz/cell

V = f*P/(((kcat*E*S)/(kM+S))*0.4);