diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3733/CH18/EX18.1/Ex18_1.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3733/CH18/EX18.1/Ex18_1.sce')
-rw-r--r-- | 3733/CH18/EX18.1/Ex18_1.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/3733/CH18/EX18.1/Ex18_1.sce b/3733/CH18/EX18.1/Ex18_1.sce new file mode 100644 index 000000000..41235ca4c --- /dev/null +++ b/3733/CH18/EX18.1/Ex18_1.sce @@ -0,0 +1,25 @@ +// Example 18_1
+clc;funcprot(0);
+//Given data
+n=10;// Number of fans used
+T_1=35;// °C
+T_2=30;// °C
+m_w1=1000;// The quantity of cooling tower circulated through the tower in kg/min
+DBT=35;// Dry bulb temperature in °C
+WBT=25;//Wet bulb temperature in °C
+C_pw=4.2;// kJ/kg°C
+RH=90;// Relative humidity in %
+
+//Calculation
+//The conditions of air at inlet and outlet are represented on psychrometric chart as shown in Fig.Prob.18.1(b)
+// From psychrometric chart,
+H_a1=76.4;// kJ/kg
+H_a2=94.5;// kJ/kg
+w_1=19;// grams/kg
+w_2=24.4;// grams/kg
+v_s1=0.895;// m^3/kg
+V=(v_s1*m_w1*C_pw*(T_1-T_2))/((H_a2-H_a1)-(((w_2-w_1)/1000)*C_pw*T_2));// m^3/min
+C=V/n;// Capacity of each fan in m^3/min
+m_m=(V/v_s1)*((w_2-w_1)/1000)*60;// The quantity of make up in kg/hr
+printf('\nThe quantity of air handled=%0.1f m^3/min \nThe quantity of make up water=%0.0f kg/hr',C,m_m);
+// The answers provided in the textbook is wrong
|