summaryrefslogtreecommitdiff
path: root/1394/CH5/EX5.2.3/Ex5_2_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1394/CH5/EX5.2.3/Ex5_2_3.sce')
-rwxr-xr-x1394/CH5/EX5.2.3/Ex5_2_3.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1394/CH5/EX5.2.3/Ex5_2_3.sce b/1394/CH5/EX5.2.3/Ex5_2_3.sce
new file mode 100755
index 000000000..eebb36d57
--- /dev/null
+++ b/1394/CH5/EX5.2.3/Ex5_2_3.sce
@@ -0,0 +1,13 @@
+
+clc
+//initialization of variables
+D1 = 1.26*10^-5 // for x1=1 , D0 value in cm^2/sec
+x1 = 0.5
+D2 = 4.68*10^-5 // for x2=1 , D0 Value in cm^2/sec
+x2 = 0.5
+k = -0.69 // dlngamma1/dx1 value given
+//Calculations
+D0 = ((D1)^x1)*((D2)^x2)*10^5 // x*10^-5 cm^2/sec
+D = D0*(1+k) // Diffusion coefficient in x*10^-5 cm^2/sec
+//Results
+printf("The diffusion coefficent is %.2f x10^-5 cm^2/sec",D)