blob: e44dc7bc75dcc0bc9b337133c1718bf9540829b6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Variable declaration:
Q = 12000.0 //Heat transfer rate (Btu/h)
U = 48.0 //Overall heat coefficient (Btu/ft^2.h..)
DTlm = 50.0 //Log mean temperature difference (.)
//Calculation:
A = Q/(U*DTlm) //Area of exchanger (ft^2)
//Result:
printf("The area of the exchanger is : %.0f ft^2 .",A)
|