summaryrefslogtreecommitdiff
path: root/2510/CH14/EX14.6/Ex14_6.sce
blob: 9bc7856585cbf4a2cfbb6937a54dda72be237ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Variable declaration:
T1 = 500.0                      //Temperature of hot fluid entering the heat exchanger (°F)
T2 = 400.0                      //Temperature of hot fluid exiting the heat exchanger (°F)
t1 = 120.0                      //Temperature of cold fluid entering the heat exchanger (°F)
t2 = 310.0                      //Temperature of cold fluid exiting the heat exchanger (°F)

//Calculation:
DT1 = T1 - t2                   //Temperature difference driving force at the heat exchanger entrance (°F)
DT2 = T2 - t1                   //Temperature difference driving force at the heat exchanger exit (°F)
DTlm = (DT1 - DT2)/(log(DT1/DT2))   //LMTD (driving force) for the heat exchanger (°F)

//Result:
printf("The LMTD (driving force) for the heat exchanger is : %.0f  °F.",DTlm)