diff options
Diffstat (limited to '1394/CH19/EX19.1.1')
-rwxr-xr-x | 1394/CH19/EX19.1.1/Ex19_1_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1394/CH19/EX19.1.1/Ex19_1_1.sce b/1394/CH19/EX19.1.1/Ex19_1_1.sce new file mode 100755 index 000000000..160ddfb16 --- /dev/null +++ b/1394/CH19/EX19.1.1/Ex19_1_1.sce @@ -0,0 +1,17 @@ + +
+clc
+//initialization of variables
+VP = 0.045*10^-3// Vapor pressure of permethrin in kg/m-sec^2
+R = 8.31 // Gas constant in kg-m^2/sec^2-gmol-K
+l = 63*10^-6 // membrane thickness in m
+A = 12*10^-4 // area surrounded by the membrane in m^2
+M1 = 19*10^-3 // Permithrin release in gmol
+t = 24*3600 // time taken to release
+T = 298 // Kelvin
+MW = 391 // Mol wt
+//Calculations
+c1 = VP/(R*T) // C1sat
+P = (M1/(t*MW))*(l/c1)*(1/A)*10^-3 //Permeability in cm^2/sec
+//Results
+printf("The permeability is %.1e m^2/sec",P)
|