blob: f43f5e73ea7f5b836bd07272443441e7fc81765f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Variable declaration:
Do = 0.06 //Outside diameter of pipe (m)
Di = 0.05 //Inside diameter of pipe (m)
ho = 8.25 //Outside coefficient (W/m^2.K)
hi = 2000.0 //Inside coefficient (W/m^2.K)
R = 1.33*10**-4 //Resistance for steel (m^2.K/W)
//Calculation:
U = 1.0/(Do/(hi*Di)+R+1.0/ho) //Overall heat transfer coefficient (W/m^2.°K)
//Result:
printf("The overall heat transfer coefficient is : %.2f W/m^2.°K.",U)
|