summaryrefslogtreecommitdiff
path: root/3685/CH15/EX15.6/Ex15_6.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.6/Ex15_6.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.6/Ex15_6.sce')
-rw-r--r--3685/CH15/EX15.6/Ex15_6.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3685/CH15/EX15.6/Ex15_6.sce b/3685/CH15/EX15.6/Ex15_6.sce
new file mode 100644
index 000000000..40eaaa1f2
--- /dev/null
+++ b/3685/CH15/EX15.6/Ex15_6.sce
@@ -0,0 +1,15 @@
+clc
+// Given that
+t = 21 // Temperature in degreee celsius
+w = 20 // Relative humidity in percentage
+t_ = 21 // Final temperature of air in degree celsius
+printf("\n Example 15.6 \n")
+// From the psychrometric chart
+T2 = 38.5 // In degree celsius
+h1_3 = 60.5-42 // In kJ/kg
+fi3 = 53 // In percentage
+t4 = 11.2 // In degree celsius
+W1_2 = 0.0153-0.0083 // In kg vap /kg dry air
+printf("\n The temperature of air at the end of the drying process is %f degree celsius,\n Heat rejected during the cooling process is %f kJ/kg,\n The relative humidity is %f percent,\n The dew point temperature at the end of drying process is %f degree celsius,\n The moisture removed during the drying process is %f kg vap/kg dry air",T2,h1_3,fi3,t4,W1_2)
+
+