summaryrefslogtreecommitdiff
path: root/542/CH11/EX11.17/Example_11_17.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /542/CH11/EX11.17/Example_11_17.sce
downloadScilab-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.17/Example_11_17.sce')
-rwxr-xr-x542/CH11/EX11.17/Example_11_17.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/542/CH11/EX11.17/Example_11_17.sce b/542/CH11/EX11.17/Example_11_17.sce
new file mode 100755
index 000000000..987ccf055
--- /dev/null
+++ b/542/CH11/EX11.17/Example_11_17.sce
@@ -0,0 +1,23 @@
+//Example 11.17 Fenske's Equation
+
+clear;
+clc;
+
+printf("\tExample 11.17\n");
+
+//From previous question data
+xA_d=0.453;
+xB_d=0.013;
+
+xA_s=0.04;
+xB_s=0.96;
+
+alpha_av=2.22;
+
+//By Fenske Equation for no. of plates
+
+n=((log(xA_d*xB_s/(xA_s*xB_d)))/log(alpha_av))-1;
+
+printf("\nMinimum no. of plates are %f or %d\n",n,n);
+
+//End \ No newline at end of file