diff options
Diffstat (limited to '1394/CH9/EX9.2.1/Ex9_2_1.sce')
-rwxr-xr-x | 1394/CH9/EX9.2.1/Ex9_2_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1394/CH9/EX9.2.1/Ex9_2_1.sce b/1394/CH9/EX9.2.1/Ex9_2_1.sce new file mode 100755 index 000000000..4403821e0 --- /dev/null +++ b/1394/CH9/EX9.2.1/Ex9_2_1.sce @@ -0,0 +1,11 @@ + +clc
+//initialization of variables
+D = 1.9*10^-5 //Diffusion co efficient in cm^2/sec
+k = 2.5*10^-3 // M.T.C in cm/sec
+//Calculations
+Lbyvmax = 4*D/((k^2)*%pi)//sec
+tou = D/k^2 // sec
+//Results
+printf("The contact time is %.1f sec",Lbyvmax)
+printf("\nThe surface resident time is %.1f sec",tou)
|