summaryrefslogtreecommitdiff
path: root/1394/CH6/EX6.4.1/Ex6_4_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1394/CH6/EX6.4.1/Ex6_4_1.sce')
-rwxr-xr-x1394/CH6/EX6.4.1/Ex6_4_1.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1394/CH6/EX6.4.1/Ex6_4_1.sce b/1394/CH6/EX6.4.1/Ex6_4_1.sce
new file mode 100755
index 000000000..94ee06b8f
--- /dev/null
+++ b/1394/CH6/EX6.4.1/Ex6_4_1.sce
@@ -0,0 +1,18 @@
+
+clc
+//Initialization of variables
+sigma1 = 4.23 // angstroms
+sigma2 = 4.16 //Angstroms
+sigma12 = (sigma1+sigma2)/2 // angstroms
+T = 573 // Kelvin
+M1 = 28
+M2 = 26
+p = 1 //atm
+Omega = 0.99
+Deff = 0.17 //cm^2/sec
+//calculations
+D = ((1.86*10^-3)*((T)^1.5)*(((1/M1)+(1/M2))^0.5))/((p)*((sigma12)^2)*Omega)//cm^2/sec
+Tou = D/Deff
+//Results
+printf("The tortuosity is %.f",Tou)
+