This preview shows page 1 out of 2 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 2 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 2 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

10.34 Quiz 1, October 4, 2006 A perfectly-stirred reactor (a CSTR) is loaded with cells which multiply at a rate: [][]()[]()1111cellsk N NutrientsCell MultiplicationcNutrients dP=++ So the net balance on cells in the CSTR is: cellsdNCell Multiplication Rateat whichce lls flowoutof reactordt=− A nutrient/water mixture with [Nutrients]in = 0.2 M is flowed into the 150 liter CSTR at a rate of 2.3 liter/min. The cells in the CSTR eat some of the nutrients: ()22cellsNutrientConsumption Rate k N c Cell Multiplication=+ and produce a desired pharmaceutical product P: []()[]()[]()231exp0.011cellskN d PP production rate NutrientscNutrients−=⋅+−1− The parameters are : 11 111711 5226111 130.5 0.1110 110110 0.01kMs cMk moles cell s c moles cellk moles cell s M d M−− −−−− −−−−− −===× =×=× = (a) Write a couple of Matlab functions that together compute the concentrations [P] and [Nutrients] (units: M = moles/liter), as well as the number of cells per liter, in the output stream when the system is operated at steady-state. Give numerical values for all the inputs. Do you think that scaling will be a problem? Explain and give an appropriate scaling factor if necessary. (b) If your program from part (a) works correctly, how would you test whether the solution found is physical and achievable (i.e. stable)? (Explain in words; bonuses for giving correct relevant equations and/or Matlab functions). (c) If your program from part (a) converges to an unphysical or unstable solution, what would you do next to try to find an experimentally-relevant steady-state solution? (Explain in words; bonuses for giving correct relevant equations and/or Matlab functions.) For your convenience, on the next page we have supplied the Matlab functions Cell_Multiplication.m, Nutrient_Consumption.m, P_production.m, and param_set.m, which you can call with the functions you write yourself. You can also call any built-in functions in Matlab and any functions presented as examples in class. Cite as: William Green, Jr., course materials for 10.34 Numerical Methods Applied to Chemical Engineering, Fall 2006.MIT OpenCourseWare (http://ocw.mit.edu), Massachusetts Institute of Technology. Downloaded on [DD Month YYYY].function CMrate = Cell_Multiplication(Ncells,Nutrients,P,params) % computes the Cell Multiplication rate (cells/s) in the CSTR % inputs: % Ncells number of cells in the CSTR % Nutrients concentration of Nutrients in the CSTR (moles/liter) % P concentration of Product in CSTR, [=] moles/liter % params values of [k1,k2,k3,c1,c2,d] as listed in problem statement. k1 = params(1); c1=params(4); d=params(6); CMrate = k1.*Ncells.*Nutrients./((1+c1.*Nutrients).*(1+d.*P)); function NCrate = Nutrient_Consumption(Ncells,Nutrients,P,params) % computes the nutrient consumption rate in the CSTR (moles/s) % inputs: % Ncells number of cells in the CSTR % Nutrients concentration of Nutrients in the CSTR (moles/liter) % P concentration of Product in CSTR, [=] moles/liter % params values of [k1,k2,k3,c1,c2,d] as listed in problem statement. k2 = params(2); c2 = params(5); NCrate = k2*Ncells + c2*Cell_Multiplication(Ncells,Nutrients,P,params); function Prate = P_production(Ncells,Nutrients,P,params) % computes the product production rate in the CSTR (moles/s) % inputs: % Ncells number of cells in the CSTR % Nutrients concentration of Nutrients in the CSTR (moles/liter) % P concentration of Product in CSTR, [=] moles/liter % params values of [k1,k2,k3,c1,c2,d] as listed in problem statement. k3 = params(3); d=params(6); c1=params(4); Prate = k3.*Ncells.*exp(-d.*P).*((Nutrients-0.01).^2)./(1+c1.*Nutrients) function params = param_set % sets params as in the problem statement % [k1 k2 k3 c1 c2 d] params = [0.5 1e-7 1e-6 0.1 1e-5 0.01]; Cite as: William Green, Jr., course materials for 10.34 Numerical Methods Applied to Chemical Engineering, Fall 2006.MIT OpenCourseWare (http://ocw.mit.edu), Massachusetts Institute of Technology. Downloaded on [DD Month


View Full Document

MIT 10 34 - Study Notes

Documents in this Course
Load more
Download Study Notes
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Study Notes and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Study Notes 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?