Hello, I am having trouble plotting this graph. Whenever I run my code I get an error that I am not using the plot function correctly or I get a blank graph. I think it may have to do with how I solved my equation for T. Thanks for any help.

2 ビュー (過去 30 日間)
To = 273
Pair = 400000
Vo = .00066667
cp = 1
syms T t
T = To - (Pair*((Vo*((T/To)^(-5/2))) - Vo)/cp)*t;
Eqn = solve(T, t)
t = 0:.001:1;
Teq = Eqn
plot(t,Teq)
  2 件のコメント
madhan ravi
madhan ravi 2020 年 9 月 27 日
You have two definitions for T?
Sarah Fries
Sarah Fries 2020 年 9 月 27 日
The only equation that I have for T is [T = To - (Pair*((Vo*((T/To)^(-5/2))) - Vo)/cp)*t]. Because T is on both sides of the equation I used syms to solve the equation so it is just an equation of T(temp) with respect to t(time). Then I want to graph the plot of time (t) vs Temp (T).

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

採用された回答

Star Strider
Star Strider 2020 年 9 月 27 日
編集済み: Star Strider 2020 年 9 月 27 日
You are using the wrong plot function.
Use fplot instead:
fplot(Teq,[0 1])
xlabel('t')
ylabel('Teq')
EDIT — (27 Sep 2020 at 18:04)
Added plot image —
.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by