Question: A student wrote following code for their homework in Bioprocess Modelling course. In the homework, the student was supposed to model and simulate microbial growth

A student wrote following code for their homework in "Bioprocess Modelling" course. In the homework, the student was supposed to model and simulate microbial growth in a stirred tank bioreactor.Based on the code given below, answer the following questions.%%%%%mumax=0.20;Ks=1.00;Yxs=0.5;Ypx=0.2;mu = @(S) mumax*S./(Ks s);Rg = @(X,S) mu(S)*X;Rs = @(X,S)-1/Yxs*Rg(X,S);Rp = @(X,S) Ypx*Rg(X,S);init=[0.10; 20.0; 0.0];dX = @(t,y) Rg(y(1),y(2));dS = @(t.y) Rs(y(1),y (2));dP = @(t,y) Rp(y(1),y(2));statefun = @(ty)[d(t,y); dS(t,y); dP(t,y)];% Use ode45 for the integration.tspan =[030][t,y]= ode45(statefunc,tspan,init);%%%%%1. Which mode of operation is assumed by the student? Justify your answer.2. What are the state variables in the model?3. What are the parameters in the model?4. Give one assumption that was assumed by the student who derived the model equations.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!