Team:DTU-Denmark/script reactor 1 equation

From 2013.igem.org

(Difference between revisions)
(Created page with "==Matlab function of design equation for reactor 1:== <pre> function V = steadystate_cstr_volume(f,S,P) %calculates volume of CSTR in steady state -> design equation % f = flow...")
(Matlab function of design equation for reactor 1:)
 
Line 1: Line 1:
 +
{{:Team:DTU-Denmark/Templates/StartPage|}}
 +
==Matlab function of design equation for reactor 1:==
==Matlab function of design equation for reactor 1:==
Line 15: Line 17:
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:22, 4 October 2013

Matlab function of design equation for reactor 1:

function V = steadystate_cstr_volume(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 = 18765; %[1/min]  AMO+HAO
kM = 1.34; % [mM] AMO+HAO
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);