From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 914/CH14/EX14.6/ex14_6.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 914/CH14/EX14.6/ex14_6.sce (limited to '914/CH14/EX14.6') 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"); -- cgit