blob: 817c8e3478c45c72ada7426df709d044b6fe7851 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Variable declaration:
a1 = 0.00044 //Term 'a' for U_clean
a2 = 0.00089 //Term 'a' for U_dirty
//Calculation:
Rs = a2 - a1 //Resistance associated with the scale
hs = 1.0/Rs //Scale film coefficient (Btu/h.ft^2..)
//Result:
printf("The scale film coefficient neglecting the wall resistance is: %.0f Btu/h.ft^2.. .",hs)
|