summaryrefslogtreecommitdiff
path: root/3685/CH15/EX15.7/Ex15_7.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3685/CH15/EX15.7/Ex15_7.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3685/CH15/EX15.7/Ex15_7.sce')
-rw-r--r--3685/CH15/EX15.7/Ex15_7.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3685/CH15/EX15.7/Ex15_7.sce b/3685/CH15/EX15.7/Ex15_7.sce
new file mode 100644
index 000000000..823519057
--- /dev/null
+++ b/3685/CH15/EX15.7/Ex15_7.sce
@@ -0,0 +1,20 @@
+clc
+h1 = 57 // Enthalpy at state 1 in kJ/kg
+h2 = h1 // Isenthalpic process
+h3 = 42 // Enthalpy at state 3 in kJ/kg
+W1 = 0.0065 // Humidity ratio at sate 1
+W2 = 0.0088 // Humidity ratio at sate 2
+W3 = W2 // Constant humidity ratio process
+t2 = 34.5 // Temperature at state 2
+v1 = 0.896// Specific volume at state 1 in m^3/kg
+n = 1500 // seating capacity of hall
+a = 0.3 // amount of outdoor air supplied m^3 per person
+G = (n*a)/0.896 // Amount of dry air supplied
+CC = (G*(h2-h3)*60)/14000 // Cooling capacity
+R = G*(W2-W1)*60 // Capacity of humidifier
+
+printf("\n Example 15.7 \n")
+printf("\n Capacity of the cooling coil is %f tonnes",CC)
+printf("\n Capacity of humidifier is %f kg/h",R)
+//The answers vary due to round off error
+