blob: 0fd234072f74061749cb4fe1ddd5d8d5252859ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Variable declaration:
k = 0.022 //Thermal conductivity of glass wool (Btu/h.ft. F)
T1 = 400 //Inside wall temperature ( F)
T2 = 25 //Outside wall temperature ( C)
L = 3/12 //Length of insulation cover (ft)
//Calculation:
T_2 = T2*(9/5)+32 //Outside wall temperature in fahrenheit scale ( F)
QbyA = k*(T1-T_2)/L //Heat flux across the wall (Btu/h.ft^2)
//Result:
printf("The heat flux across the wall is : %.1f Btu/h.ft^2 .",QbyA)
|