blob: d3f212742feca901794d6652b08e2dbe2eca0e8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//initialisation
n=1.7*10^-5//newton/m2/unit vel gradient
p=10^5//newton//m2
d=1.2//kg/m3
//CALCULATIONS
l=n*sqrt(3/(d*p))
f=p/n
//results
printf('.mean free path= % 1e m',l)
printf(' \ncollision frequency= % 1f per second',f)
|