MATLAB is not plotting the entire graph
Mostrar comentarios más antiguos
%%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
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Vector Fields en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!