summaryrefslogtreecommitdiff
path: root/1826/CH7/EX7.12/ex7_12.sce
blob: 0b219f1d4a78e3f60b0babd0ed1caad1ce3e696d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Example 7.12, page no-168
clear
clc

rho=1.54*10^-8
e=1.6*10^-19 //C
ef=5.5*e//J
n=5.8*10^28///per cubic meter
m=9.1*10^-31//kg

//(i)
t=m/(rho*n*e^2)
mu=e*t/m
printf("\n(i)\nThe relaxation time is %.2f*10^-14 s\nThe mobility of the electrons is %.4f *10^-3 m^2/V-s",t*10^14,mu*10^3)

//(ii)
vd=e*t*100/m
printf("\n\n(ii)\nthe drift velocity of elctron is %.5f m/s",vd)

//(iii)
vf=sqrt(2*ef/m)
printf("\n\n(iii)\nFermi velocity is %.2f*10^6 m/s",vf*10^-6)

//(iv)
lam=vf*t
printf("\n\n(iv)\nThe mean free path is %.3f*10^-8 m",lam*10^8)