summaryrefslogtreecommitdiff
path: root/3685/CH22/EX22.4/Ex22_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3685/CH22/EX22.4/Ex22_4.sce')
-rw-r--r--3685/CH22/EX22.4/Ex22_4.sce13
1 files changed, 13 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)
+