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 /1394/CH13/EX13.1.1 | |
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 '1394/CH13/EX13.1.1')
-rwxr-xr-x | 1394/CH13/EX13.1.1/Ex13_1_1.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/1394/CH13/EX13.1.1/Ex13_1_1.sce b/1394/CH13/EX13.1.1/Ex13_1_1.sce new file mode 100755 index 000000000..ff0872eae --- /dev/null +++ b/1394/CH13/EX13.1.1/Ex13_1_1.sce @@ -0,0 +1,28 @@ + +
+clc
+//Intialization of variables
+xD = 0.90 // Distillate mole fraction
+xB = 0.15// Reboiler mole fraction
+xF = 0.50 //Feed mole fraction
+F = 10 // mol/sec
+dg = 3.1*10^-3 // g/cc
+dl = 0.65 // g/cc
+C = 0.11 // m/sec
+//Calculations
+D = ((xF*F)-(xB*F))/(xD-xB)
+B = ((xF*F)-(xD*F))/(xB-xD)
+L = 3.5*D
+G = L+D
+L1 = L+F
+G1 = G
+f = (L1/G1)*(sqrt(dg/dl)) // flow parameter
+vG = C*(sqrt((dl-dg)/dg))//vapor velocity in m/sec
+c = (22.4*10^-3)*340/373
+d = sqrt(4*G1*c/(vG*%pi))//m
+//Results
+printf("The column diameter is %.1f m",d)
+
+//Calculation mistake in textbook
+
+
|