summaryrefslogtreecommitdiff
path: root/914/CH14/EX14.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /914/CH14/EX14.6
downloadScilab-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-x914/CH14/EX14.6/ex14_6.sce20
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");