summaryrefslogtreecommitdiff
path: root/779/CH15/EX15.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /779/CH15/EX15.7
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 '779/CH15/EX15.7')
-rwxr-xr-x779/CH15/EX15.7/15_7.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/779/CH15/EX15.7/15_7.sce b/779/CH15/EX15.7/15_7.sce
new file mode 100755
index 000000000..d6726bf76
--- /dev/null
+++ b/779/CH15/EX15.7/15_7.sce
@@ -0,0 +1,11 @@
+h1 = 57; h2 = h1;
+h3 = 42;
+W1 = 0.0065; W2 = 0.0088; W3 = W2;
+t2 = 34.5; v1 = 0.896;
+n = 1500; // seating capacity of hall
+a = 0.3; // amount of out door air suplied
+G = (n*a)/0.896 ; // Amount of dry air suplied
+CC = (G*(h2-h3)*60)/14000; // in tonns
+R = G*(W2-W1)*60;
+disp("tonnes",CC,"Capacity of the cooling coil in tonnes")
+disp("kg/h",R,"Capacity of humidifier")