summaryrefslogtreecommitdiff
path: root/599/CH2/EX2.16/example2_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '599/CH2/EX2.16/example2_16.sce')
-rwxr-xr-x599/CH2/EX2.16/example2_16.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/599/CH2/EX2.16/example2_16.sce b/599/CH2/EX2.16/example2_16.sce
new file mode 100755
index 000000000..f4ff8ca2d
--- /dev/null
+++ b/599/CH2/EX2.16/example2_16.sce
@@ -0,0 +1,26 @@
+
+clear;
+clc;
+printf("\t Example 2.16\n");
+ya2=0.1; //molefraction at pos.2
+ya1=0.8; //molefraction at pos.1
+T=(370); //temperature in kelvin
+pt=1*1.013*10^5; //total pressure in pascal
+z=0.1*10^-3; //gas film thickness in m
+Dab=.15*10^-2; //diffusion coefficient in m^2/s
+R=8314; //universal gas constant
+Area=10; //area of the film is 10m^2
+
+ //alcohol is being absorbed infrom amixture of alcohol vapour and water vapour by means of non-volatile solvent in which alcohol is soluble bt water is not
+ //for gase Dab=T^3/2
+ //Dab1/Dab2=(T1/T2)^3/2
+
+T2=370; //final temperature in kelvin
+T1=298; //initial temperature in kelvin
+Dab1=.15*10^-2; //initial diffusion coefficient
+Dab2=((T2/T1)^(3/2))*Dab1; //final diffusion coefficient
+Na=Dab2*pt*log((1-ya2)/(1-ya1))/(z*R*T); //diffusion flux in kmol/m^2*s
+rate=Na*3600*46*Area; //rate of diffusion of alcohol-water vapour in kg/hour
+printf("\n rate of diffusion of alcohol-water vapour :%f *10^6 kg/hour ",rate/10^6);
+
+//end \ No newline at end of file