How do I plot heat transfer coefficient (h) against values not used in the equation?

3 ビュー (過去 30 日間)
Bixius
Bixius 2018 年 7 月 11 日
回答済み: Torsten 2018 年 7 月 11 日
I have used a range of Reynolds number to find the Nusselt number using an existing correlations:
Pr = 7.02;
Re = 5000:20000;
Nu = 0.9553*Pr^0.4*Re.^0.5;
Next I have found the heat transfer coefficient using the equation
D = 0.897e-3;
k = 0.6;
h = Nu.*k/D;
How can I plot the values of the heat transfer against the initial range of Reynolds number?

採用された回答

Torsten
Torsten 2018 年 7 月 11 日
Pr = 7.02;
Re = 5000:20000;
Nu = 0.9553*Pr^0.4*Re.^0.5;
D = 0.897e-3;
k = 0.6;
h = Nu*k/D;
plot(Re,h)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeHeat and Mass Transfer についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by