MATLAB: MATLAB is not plotting the entire graph

graphgraphingplotplotting

%%Reaction rate constants:
k1 = 5/6; %(min^-1)

k2 = 5/3; %(min^-1)
k3 = 1/6; %(mol/(L min))
%%Reactor volume:
V = 1; %(L)
%%Initial values:
Cao = 10; %(mol/L)
%%Feed flow rate:
F = 0:0.1:5
%%Ca at steady state equation:
Cas = (-(k1+F./V)/(2*k3))+sqrt((k1+F./V).^2+4*k3*(F./V)*Cao)/(2*k3);
%%Cb at steady state equation:
Cbs = Cas*(k1)/((F./V)+k2)
plot(F,Cbs)
This is only giving me the final Value of Cbs instead of all the values of Cbs tied to the correct F

Best Answer

Correct the last lines
Cbs = Cas*(k1)./((F./V)+k2)
plot(F,Cbs)
Related Question