blob: f4bdc35c0c5320767297f219e4ecb973a519d344 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clear;
clc;
//Example13.12[Radiation Effect on Temperature Measurements]
//Given:-
Tw=400,Tth=650;//Temperature of duct wall and hota air flowing in it[K]
e=0.6;//emissivity
h=80;//Heat transfer coefficient[W/m^2.K]
//Solution:-
Tf=Tth+((e*5.67*10^(-8)*((Tth^4)-(Tw^4)))/h);//[K]
disp("K",round(Tf),"The temperature of actual air is")
|