blob: 200f5972aecb9c2a2f2a8e4ff9471532151321bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Variable declaration
ne=1; //number of electrons
rho=1.73*10**-8; //resistivity(ohm m)
w=63.5; //atomic weight
e=1.6*10**-19; //charge(c)
D=8.92*10**3; //density(kg/m**3)
Na=6.02*10**26; //avagadro number(per k mol)
//Calculation
n=ne*Na*D/w;
mew=1/(n*e*rho); //mobility of electrons(m**2/Vs)
//Result
printf('mobility of electrons is %0.3f m**2/Vs \n',(mew))
printf('answer in the book is wrong\n')
|