summaryrefslogtreecommitdiff
path: root/1309/CH9/EX9.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1309/CH9/EX9.2
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1309/CH9/EX9.2')
-rwxr-xr-x1309/CH9/EX9.2/Result9_2.pdfbin0 -> 89945 bytes
-rwxr-xr-x1309/CH9/EX9.2/ch9_2.sce15
2 files changed, 15 insertions, 0 deletions
diff --git a/1309/CH9/EX9.2/Result9_2.pdf b/1309/CH9/EX9.2/Result9_2.pdf
new file mode 100755
index 000000000..36f659907
--- /dev/null
+++ b/1309/CH9/EX9.2/Result9_2.pdf
Binary files differ
diff --git a/1309/CH9/EX9.2/ch9_2.sce b/1309/CH9/EX9.2/ch9_2.sce
new file mode 100755
index 000000000..535d0e11c
--- /dev/null
+++ b/1309/CH9/EX9.2/ch9_2.sce
@@ -0,0 +1,15 @@
+clc;
+clear;
+printf("\t\t\tChapter9_example2\n\n\n");
+// Determination of the LMTD for both counterflow and parallel-flow configurations.
+// temperatures of hot fluid in degree F
+T1=250;
+T2=150;
+// temperatures of cold fluid in degree F
+t1=100;
+t2=150;
+// 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
+printf("\nFor a finite heat-transfer rate and a finite overall heat-transfer coefficient,\nif parallel flow is to give equal outlet temperatures,\nthen the area needed must be infinite which is not feasible economically.");