how to make a plot

12 ビュー (過去 30 日間)
hyoung chul roh
hyoung chul roh 2018 年 11 月 21 日
コメント済み: Majid Farzaneh 2018 年 11 月 22 日
i don't know how to make a plot F vs V
i want to plotting Fa vs V , Fb vs V ,Fc vs V on one plot
some equtions is here
dFa/dV=ra
dFb/dV=-ra-kc*Ct*Fb/FT
dFc/dV=-ra
-ra=K*(Ca-Cb*Cc/Kc)
Ca=Ct*Fa/Ft
Cb=Ct*Fb/Ft
Cc=Ct*Fc/Ft
here is constant number
Ct=0.2mol/L
K=0.7/min
Kc=0.05mol/L
kc=0.2/min
Fa(0)=10mol/min
Fb(0)=0
Fc(0)=0
these three property is initial property
plses tell me how to make a plot Fa Vs V , Fb Vs V ,Fc Vs V on same plot
  2 件のコメント
Adam Danz
Adam Danz 2018 年 11 月 21 日
What's V?
hyoung chul roh
hyoung chul roh 2018 年 11 月 22 日
V means Volume which is variable

サインインしてコメントする。

採用された回答

Majid Farzaneh
Majid Farzaneh 2018 年 11 月 21 日
Hi, you can use this:
figure,
plot(V,Fa,'-o')
hold on
plot(V,Fb,'-*')
plot(V,Fc,'-^')
legend('Fa','Fb','Fc')
  2 件のコメント
hyoung chul roh
hyoung chul roh 2018 年 11 月 22 日
thank you very much
Majid Farzaneh
Majid Farzaneh 2018 年 11 月 22 日
you're welcome

サインインしてコメントする。

その他の回答 (1 件)

Cris LaPierre
Cris LaPierre 2018 年 11 月 21 日
Chapter 9 of MATLAB Onramp
  1 件のコメント
hyoung chul roh
hyoung chul roh 2018 年 11 月 22 日
thank you!

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by