diff options
Diffstat (limited to '3685/CH22/EX22.4')
-rw-r--r-- | 3685/CH22/EX22.4/Ex22_4.sce | 13 | ||||
-rw-r--r-- | 3685/CH22/EX22.4/Ex22_4.txt | 4 |
2 files changed, 17 insertions, 0 deletions
diff --git a/3685/CH22/EX22.4/Ex22_4.sce b/3685/CH22/EX22.4/Ex22_4.sce new file mode 100644 index 000000000..6f0c02421 --- /dev/null +++ b/3685/CH22/EX22.4/Ex22_4.sce @@ -0,0 +1,13 @@ +clc
+// Given that
+p = 1 // Pressure in atm
+t = 300 // Temperature in K
+printf("\n Example 22.4 \n")
+// From previous example, we have
+m = 5.31e-26 // In kg/molecule
+v = 445 // In m/s
+sigma = 3.84e-19 // In m^2
+// Therefore
+mu = (1/3)*(m*v/sigma)
+printf("\n Coefficient of viscosity = %e Ns/m^2",mu)
+
diff --git a/3685/CH22/EX22.4/Ex22_4.txt b/3685/CH22/EX22.4/Ex22_4.txt new file mode 100644 index 000000000..420d65dcc --- /dev/null +++ b/3685/CH22/EX22.4/Ex22_4.txt @@ -0,0 +1,4 @@ +
+ Example 22.4
+
+ Coefficient of viscosity = 2.051172e-05 Ns/m^2
\ No newline at end of file |