summaryrefslogtreecommitdiff
path: root/1427/CH25/EX25.19/25_19.sce
blob: c9f27cd89b880347c781fd832b70d4a024db2811 (plain)
1
2
3
4
5
6
7
8
//ques-25.19
//Calculating mean free path of oxygen
clc
dia=3.61*10^-10;//collision diameter (in m)
T=273+25;//temperature (in K)
N_V=(6.023*10^23)/(0.0224*T/278);
w=1/(sqrt(2*%pi)*N_V*dia^2);
printf("The value of mean free path is %.2f nm.",w*10^9);