Plotting Kinetic Model Monod, Haldane Equation
Show older comments
Hello! I am trying to plot graphs (Substrate vs time, Biomass vs time, and Product vs time) from these kinetic equations below:

Where the parameter kinetic are shown in the following table

And the maintenance coefficient of cells (ms) gave a value less than 0.005 g g−1 h−1, it was neglected in the model.
I want to plot this paramaeter to the model kinetic to get plot data like this
where the data shown in the table below
I have tried code like this, but it is still error. Any little suggestion or solutions or comments are very welcomed! Thank you so much!
function CobaLunaFlores_ode23
Rentang = [0:10:80];
C0 = [28.90 0.62 0.07586];
Miumax=0.145;
Ks=1.6607;
Ki=50.3151;
Kp=8798.15;
gamma=3.6658;
Yxs=0.3941;
alfa=371.45;
betha=1.5502;
ms=0.005;
[t,C]=ode23(@LunaFlores,Rentang,C0)
plot(t,C)
end
function dCdt=LunaFlores(t,C)
dCdt(1,:)=((Miumax*C(1))/(Ks+C(1)+(C(1)^2/Ki))*(1-P(1)/Kp)^gamma)*C(2);
dCdt(2,:)= -C(2)*((((Miumax*C(1))/(Ks+C(1)+(C(1)^2/Ki))*(1-P(1)/Kp)^gamma)/Yxs)+ms);
dCdt(3,:)= C(2)*(alfa*((Miumax*C(1))/(Ks+C(1)+(C(1)^2/Ki))*(1-P(1)/Kp)^gamma)+betha);
end
Accepted Answer
More Answers (0)
Categories
Find more on Mathematics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

