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 /542/CH11/EX11.11 | |
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 '542/CH11/EX11.11')
-rwxr-xr-x | 542/CH11/EX11.11/Example_11_11.sce | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/542/CH11/EX11.11/Example_11_11.sce b/542/CH11/EX11.11/Example_11_11.sce new file mode 100755 index 000000000..c26314980 --- /dev/null +++ b/542/CH11/EX11.11/Example_11_11.sce @@ -0,0 +1,37 @@ +//Example 11.11
+
+clear;
+clc;
+
+printf("\tExample 11.11\n");
+
+// F is feed
+// D is distillate
+// W is waste
+// S is sidestream
+
+F=100;
+S=10;
+
+//Mass fractions of CCl4 in various streams
+xf=0.5;
+xd=0.95;
+xw=0.05;
+xs=0.8;
+
+// D + W = 100-10
+// 0.95D + 0.00W = 50-8
+A=[1,1;0.95,0.05];
+B=[90;42];
+x=inv(A)*B;
+printf("\nD = %.1f W = %.1f\n",x(1),x(2));
+
+disp("From the enthalpy data and the reflux ratio, the upper pole point M is located as shown in Figure.");
+
+disp("Points F and S are located,such that FS/FF = 10.");
+
+disp("MF is Joined and extended to cut NS^A at O, the immediate pole point.");
+disp("The number of stages required is then obtained from the figure and");
+printf("13 theoretical stages are required");
+
+//End
|