diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /914/CH14/EX14.6 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '914/CH14/EX14.6')
-rwxr-xr-x | 914/CH14/EX14.6/ex14_6.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/914/CH14/EX14.6/ex14_6.sce b/914/CH14/EX14.6/ex14_6.sce new file mode 100755 index 000000000..058310211 --- /dev/null +++ b/914/CH14/EX14.6/ex14_6.sce @@ -0,0 +1,20 @@ +clc;
+warning("off");
+printf("\n\n example14.6 - pg732");
+// given
+T=423.2; //[K] - temperature
+P=5; //[atm] - pressure
+Ma=4.0026; //[kg/mole] - molecular weight of helium
+Mb=60.09121; //[kg/mole] - molecular weight of propanol
+Dab_experimental=1.352*10^-5; //[m^2/sec] - experimental value of diffusion coefficient of helium-proponal system
+// the diffusion volumes for carbon , hydrogen and oxygen are-
+Vc=16.5;
+Vh=1.98;
+Vo=5.48;
+V_A=3*Vc+8*Vh+Vo;
+V_B=2.88;
+patm=5;
+// using the FSG correlation
+Dab=(10^-7)*(((T^1.75)*((1/Ma)+(1/Mb))^(1/2))/(patm*((V_A)^(1/3)+(V_B)^(1/3))^2));
+printf("\n\n Dab=%em^2/sec",Dab);
+printf("\n\n The FSG correlation agrees to about 2 percent with the experimental value");
|