summaryrefslogtreecommitdiff
path: root/3878/CH21/EX21.8
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3878/CH21/EX21.8
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 '3878/CH21/EX21.8')
-rw-r--r--3878/CH21/EX21.8/Ex21_8.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3878/CH21/EX21.8/Ex21_8.sce b/3878/CH21/EX21.8/Ex21_8.sce
new file mode 100644
index 000000000..9b09eb799
--- /dev/null
+++ b/3878/CH21/EX21.8/Ex21_8.sce
@@ -0,0 +1,16 @@
+clear
+// Variable declaration
+T_d1=24// The dry bulb temperature in °C
+T_d2=7// The dry bulb temperature in °C
+H=45// % saturation
+cf=0.78// Contact factor
+h_1=45.85// The enthalpy in kJ/kg
+h_2=22.72// The enthalpy in kJ/kg
+
+// Calculation
+//(a) By construction on the chart ( Figure 21.9 ), 10.7°C dry bulb, 85% saturation.
+//(b) By calculation, the dry bulb will drop 78% of 24 to 7°C:
+dT=T_d1-(cf*(T_d1-T_d2))// The drop in dry bulb temperature in °C
+dh=h_1-(cf*(h_1-h_2))// The drop in enthalpy in kJ/kg
+printf("\n \nThe drop in dry bulb temperature=%2.1f°C \nThe drop in enthlpy=%2.2f kJ/kg",dT,dh)
+