summaryrefslogtreecommitdiff
path: root/3685/CH15/EX15.9/Ex15_9.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.9/Ex15_9.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.9/Ex15_9.sce')
-rw-r--r--3685/CH15/EX15.9/Ex15_9.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3685/CH15/EX15.9/Ex15_9.sce b/3685/CH15/EX15.9/Ex15_9.sce
new file mode 100644
index 000000000..77e1f0735
--- /dev/null
+++ b/3685/CH15/EX15.9/Ex15_9.sce
@@ -0,0 +1,20 @@
+clc
+// Given that
+DBT = 40 // Dry bulb temperature in degree celsius
+DBT_ = 25 // Dry bulb temperature after cooling and dehumidification in degree celsius
+RH = 70 // Relative humidity in percentage
+f = 30 // Air flow rate in cmm
+printf("\n Example 15.9 \n")
+// From the psychrometric chart
+v1 = 0.9125 // In m^3/kg
+G = f/v1
+h5 = 41.5 // In kJ/kg
+W1 = 0.0182 // In kg vapor/kg dry air
+h1 = 86 // In kJ/kg d.a.
+W2 = 0.0136 // In kg vapor/kg dry air
+h2 = 60 // In kJ/kg
+L = G*(h1-h2)/3.5
+Mo = G*(W1-W2)
+x = (h2-h5)/(h1-h5)
+printf("\n Bypass factor of coolin coil is %f ",x)
+// Answer veries due to round off error