summaryrefslogtreecommitdiff
path: root/1752/CH10/EX10.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1752/CH10/EX10.2
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 '1752/CH10/EX10.2')
-rwxr-xr-x1752/CH10/EX10.2/exa_10_2.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1752/CH10/EX10.2/exa_10_2.sce b/1752/CH10/EX10.2/exa_10_2.sce
new file mode 100755
index 000000000..26a0bd83b
--- /dev/null
+++ b/1752/CH10/EX10.2/exa_10_2.sce
@@ -0,0 +1,16 @@
+//Exa 10.2
+clc;
+clear;
+close;
+//given data
+format('v',13);
+T=25;// in degree C
+T=T+273;// in K
+P=1;
+V1=12;//Molecular volume of H2 in cm^3/gm mole
+V2=30;//Molecular volume of Air in cm^3/gm mole
+M1=2;// Molecular weight of H2
+M2=29;// Molecular weight of Air
+//The diffusion coefficient for gases in terms of molecular volumes may be express as
+D_AB= .0043*T^(3/2)/(P*(V1^(1/3)+V2^(1/3)))*(1/M1+1/M2)^(1/2);
+disp(D_AB,"The diffusion coefficient for gases in terms of molecular volumes in cm^2/sec");