summaryrefslogtreecommitdiff
path: root/2510/CH11/EX11.11/Ex11_11.sce
blob: ded3aa878b676a61c038d70ff728d4a054d2e3b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Variable declaration:
//Froma example 11.10:
Q = 880.0                   //Heat loss due to radiation (Btu/h)
A = 10.0                    //Area of pipe (ft^2)
TH = 140.0                  //Absolute outside temperature of pipe (°F)
TC = 60.0                   //Absolute temperature of surrounding atmosphere (°F)

//Calculation:
hr = Q/(A*(TH-TC))          //Radiation heat transfer coefficient (Btu/h.ft^2.°F)

//Result:
printf("The radiation heat transfer coefficient is : %.1f Btu/h.ft^2.°F.",hr)