blob: 8f0f73974f9da23bd944f66351e01b38281ffb13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Variable declaration:
Di = 0.902/12.0 //Inside diameter of tube (ft)
Do = 1.0/12.0 //Outside diameter of tube (ft)
k = 60.0 //Thermal conductivity of tube (Btu/h.ft^2..)
//Calculation:
//From example 15.19:
a = 0.00126
Dr = (Do - Di)/2.0 //Radial thickness of tube wall (ft)
Rw = Dr/k //Resistance of wall (Btu/h..)
ho = 1.0/(a-Rw) //The revised ho (Btu/h.ft^2..)
//Result:
printf("The revised ho is : %.0f Btu/h.ft^2.. .",ho)
|