summaryrefslogtreecommitdiff
path: root/551/CH15/EX15.19
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /551/CH15/EX15.19
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 '551/CH15/EX15.19')
-rwxr-xr-x551/CH15/EX15.19/19.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/551/CH15/EX15.19/19.sce b/551/CH15/EX15.19/19.sce
new file mode 100755
index 000000000..4f63b58fe
--- /dev/null
+++ b/551/CH15/EX15.19/19.sce
@@ -0,0 +1,28 @@
+clc
+t_c1=25; //0C
+t_c2=65; //0C
+cph=1.45; //kJ/kg K
+m_h=0.9; //kg/s
+t_h1=230; //0C
+t_h2=160; //0C
+U=420; //W/m^2 0C
+cpc=4.187; //kJ/kg K
+
+disp("(i) The rate of heat transfer =")
+Q=m_h*cph*(t_h1-t_h2);
+disp(Q)
+disp("kJ/s")
+
+
+disp("(ii) The mass flow rate of water =")
+m_c=Q/cpc/(t_c2-t_c1);
+disp(m_c)
+disp("kg/s")
+
+
+disp("(iii) The surface area of heat exchanger =")
+LMTD=((t_h1-t_c2)- (t_h2-t_c1))/log((t_h1-t_c2)/(t_h2-t_c1)); //logarithmic mean temperature difference
+A=Q*10^3/U/LMTD;
+disp("A=")
+disp(A)
+disp("m^2") \ No newline at end of file