blob: c66dbae43b2eeb590d5e07a16e3ae7d35b3ddeab (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Variable declaration:
//From figure 15.7:
a = 0.00126
b = 0.0276
//Calculation:
ho = 1.0/a //The value of ho (Btu/h.ft^2..)
//Result:
printf("Thermal conductivity is : %.0f Btu/h.ft^2.. .",ho)
|