blob: 125bafe041b7ec6f627b8dbb1e22bf730e008fd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//initialisation
p=0.76*9.81*13600
dv=10^-5//m3
k=1.38*10^-23
t=300//k
//CALCULATIONS
r=(p*dv)/(k*t)
//results
printf(' \n factor by which number of accessible states increases is exp(r) ')
printf(' \n r= % 1e ',r)
|