How do I plot heat transfer coefficient (h) against values not used in the equation?
조회 수: 3 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
채택된 답변
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Heat and Mass Transfer에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!