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 --- 1394/CH10/EX10.3.2/Ex10_3_2.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 1394/CH10/EX10.3.2/Ex10_3_2.sce (limited to '1394/CH10/EX10.3.2') diff --git a/1394/CH10/EX10.3.2/Ex10_3_2.sce b/1394/CH10/EX10.3.2/Ex10_3_2.sce new file mode 100755 index 000000000..571a135bf --- /dev/null +++ b/1394/CH10/EX10.3.2/Ex10_3_2.sce @@ -0,0 +1,19 @@ + + +clc +//initialization of variables +l = 200 // Length of the tower in cm +d = 60 // diameter of the tower +Lf = 300 // Liquid flow in cc/sec +Kx = 2.2*10^-3 // dominant transfer co efficient in liquid in cm/sec +//Calculations +A = %pi*60*60/4 // Area of the cross section in sq cm +L = Lf/A // Liquid flux in cm^2/sec +ratio = 1/(exp((l*Kx)/L)) +percentage = (1-ratio)*100 // Percentage removal of Oxygen +//Results +printf("the percentage of oxygen we can remove is %.1f",percentage) + + + +// Rounding of error in textbook -- cgit