From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 542/CH11/EX11.17/Example_11_17.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 542/CH11/EX11.17/Example_11_17.sce (limited to '542/CH11/EX11.17/Example_11_17.sce') 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 -- cgit