diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /839/CH16/EX16.3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '839/CH16/EX16.3')
-rwxr-xr-x | 839/CH16/EX16.3/Example_16_3.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/839/CH16/EX16.3/Example_16_3.sce b/839/CH16/EX16.3/Example_16_3.sce new file mode 100755 index 000000000..53e78a4aa --- /dev/null +++ b/839/CH16/EX16.3/Example_16_3.sce @@ -0,0 +1,28 @@ +//clear//
+clear;
+clc;
+
+//Example 16.3
+//Given
+mdot_ft = 60000; //[lb/h]
+xin = 0.10;
+Tin = 180; //[F]
+xout = 0.50
+Ps = 50; //[lbf/in.^2]
+Tc = 100; //[F]
+
+//Solution
+//From Table 16.2
+U1 = 700; //[Btu/ft^2-h-F]
+U2 = 1000; //[Btu/ft^2-h-F]
+U3 = 800; //[Btu/ft^2-h-F]
+//The total rate of evaporation is calculated from an overall material balance
+//assuming the solds go through the evaporator without loss
+//Table 16.3
+mdot_fs = 6000; //[lb/h]
+mdot_fw = 54000; //[lb/h]
+mdot_lt = 12000; //[lb/h]
+mdot_ls = 6000; //[lb/h]
+mdot_lw = 6000; //[lb/h]
+w_evap = mdot_ft-mdot_fs; //[lb/h]
+
|