blob: a96e6b756df3bb76655f589bb030833a66edf93f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//initialisation of variables
n= 2.46*10^19 //molecules cm^-3
n1= 3.24*10^13 //molecules cm^-3
l= 3.61*10^-8
//CALCULATIONS
L= (sqrt(2)*%pi*l^2*n)^-1
L1=(sqrt(2)*%pi*l^2*n1)^-1
//RESULTS
printf ('mean free path= %.2e cm',L)
printf ('\n mean free path= %.2e cm',L1)
//ANSWER GIVEN IN THE TEXTBOOK IS WRONG
|