diff options
Diffstat (limited to '3685/CH22/EX22.1')
-rw-r--r-- | 3685/CH22/EX22.1/Ex22_1.sce | 14 | ||||
-rw-r--r-- | 3685/CH22/EX22.1/Ex22_1.txt | 5 |
2 files changed, 19 insertions, 0 deletions
diff --git a/3685/CH22/EX22.1/Ex22_1.sce b/3685/CH22/EX22.1/Ex22_1.sce new file mode 100644 index 000000000..404e43817 --- /dev/null +++ b/3685/CH22/EX22.1/Ex22_1.sce @@ -0,0 +1,14 @@ +clc
+// Given that
+p = 1.013e5 // Pressure in Pa
+t = 300 // Temperature in K
+d = 3.5 // Effective diameter of oxygen molecule in Angstrom
+r = 2 // Ratio of free path of molecules with the lambda
+printf("\n Example 22.1 \n")
+sigma = %pi*(d*(10^-10))^2
+n = p/(t*1.38*(10^-23))
+lambda = 0.707/(sigma*n)
+R = exp(-r)
+printf("\n Mean free path = %e m,\n The fraction of molecules have free path longer than 2*lambda = %f percent",lambda,R*100)
+// Answer given in the book contain round off error for mean free path.
+
diff --git a/3685/CH22/EX22.1/Ex22_1.txt b/3685/CH22/EX22.1/Ex22_1.txt new file mode 100644 index 000000000..b3876ea45 --- /dev/null +++ b/3685/CH22/EX22.1/Ex22_1.txt @@ -0,0 +1,5 @@ +
+ Example 22.1
+
+ Mean free path = 7.508001e-08 m,
+ The fraction of molecules have free path longer than 2*lambda = 13.533528 percent
\ No newline at end of file |