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 --- 2741/CH5/EX5.21/Chapter5_Example21.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 2741/CH5/EX5.21/Chapter5_Example21.sce (limited to '2741/CH5/EX5.21') diff --git a/2741/CH5/EX5.21/Chapter5_Example21.sce b/2741/CH5/EX5.21/Chapter5_Example21.sce new file mode 100755 index 000000000..3ec882135 --- /dev/null +++ b/2741/CH5/EX5.21/Chapter5_Example21.sce @@ -0,0 +1,19 @@ +clc +clear +//Input data +n=1.66*10^-4;//The viscosity of the gas in dynes/cm^2 +C=4.5*10^4;//The R.M.S velocity of the molecules in cm/s +d=1.25*10^-3;//The density of the gas in g/cc +N=6.023*10^23;//The Avogadro number +V=22400;//The volume of a gas at N.T.P in cc +pi=3.142;//The mathematical constant of pi + +//Calculations +L=(3*n)/(d*C);//The mean free path of the molecules of the gas in cm +F=(C/L);//The frequency collision in per sec +n=N/V;//Number of molecules per cc +D=1/((1.414*pi*n*L)^(1/2));//Molecular diameter of the gas molecules in cm + +//Output +printf('(1)The mean free path of the molecules of the gas is %3.0g cm \n (2)The frequency of collision is N = %3.0g /sec \n (3)Molecular diameter of the gas molecules is d = %3.0g cm ',L,F,D) + -- cgit