summaryrefslogtreecommitdiff
path: root/914/CH5/EX5.13/ex5_13.sce
blob: adb2bf97a3d61a0d9bc9c489c7b4912ba49e7079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
clc;
warning("off");
printf("\n\n example5.13 - pg184");
// given
l=4;  //[m] - length of the tube
id=1.6*10^-3;  //[m] - inside diameter
Nkn=10;  // - knudsen no.
Ma=92;  // - molecular weight of gas
mu=6.5*10^-4;  //[kg/m*sec] - viscosity
T=300;  //[K] - temperature
R=8314;  //[kPa*m^3*kmol^-1*K^-1] - gas constant
lambdaA=Nkn*id;  //[m] mean free path
// for calculating pressure using the formula lamdaA=32*(mu/p)*((R*T)/(2*pi*Ma))^(1/2)
p=32*(mu/lambdaA)*((R*T)/(2*%pi*Ma))^(1/2);
patm=p/(1.01325*10^5);
printf("\n\n p=%fkg/m*sec^2=%fPa=%eatm",p,p,patm);
printf("\n The value of 10 for the knudsen number is on the border between Knudsen diffusion and transition flow");