summaryrefslogtreecommitdiff
path: root/551/CH10/EX10.15
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /551/CH10/EX10.15
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/CH10/EX10.15')
-rwxr-xr-x551/CH10/EX10.15/15.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/551/CH10/EX10.15/15.sce b/551/CH10/EX10.15/15.sce
new file mode 100755
index 000000000..43f66b378
--- /dev/null
+++ b/551/CH10/EX10.15/15.sce
@@ -0,0 +1,25 @@
+clc
+
+m_water=60000; //kg/s
+c=4.186;
+t1=30; //0C
+t2=35; //0C
+Q=m_water*c*(t2-t1);
+
+h1=76.5; //kJ/kg
+W1=0.016; //kg/kg of air
+h2=92.5; //kJ/kg
+W2=0.0246; //kg/kg of air
+
+m_air=Q/(h2-h1);
+
+A=m_air/10; //Quantity of air handled per fan
+disp("Quantity of air handled per fan=")
+disp(A)
+disp("kg/h")
+
+
+B=m_air*(W2-W1);
+disp("Quantity of make up water=")
+disp(B)
+disp("kg/h") \ No newline at end of file