Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data And Information Quality Dimensions, Principles And Techniques

Authors: Carlo Batini, Monica Scannapieco

1st Edition

3319241060, 9783319241067

More Books

Students also viewed these Databases questions