summaryrefslogtreecommitdiff
path: root/1309/CH9/EX9.1/ch9_1.sce
blob: ff9cd87a796e622ab188c3249bd77ccaa2ce279e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clc;
clear;
printf("\t\t\tChapter9_example1\n\n\n");
// determination of counterflow and parallel-flow configurations. 
// temperatures of hot fluid in degree C
T1=100;
T2=75;
// temperatures of cold fluid in degree C
t1=5;
t2=50;
// for counterflow
LMTD_counter=((T1-t2)-(T2-t1))/(log((T1-t2)/(T2-t1)));
printf("\nThe LMTD for counter flow configuration is %.1f degree C",LMTD_counter);
// for parallel flow
LMTD_parallel=((T1-t1)-(T2-t2))/(log((T1-t1)/(T2-t2)));
printf("\nThe LMTD for parallel flow configuration is %.1f degree C",LMTD_parallel);