blob: dcfdfe5767bf97a9da8dc9d70c0234092d575e00 (
plain)
1
2
3
4
5
6
7
8
|
// chapter 6 , Example6.12 , pg 177
n=5.8*10^28 // electron concentration (in /m^3)
e=1.6*10^-19 // charge of electron (in C)
rho=1.54*10^-8 //resistivity of metal (in ohm*m)
M=9.11*10^-31 //mass of electron (in Kg)
T=M/(n*e^2*rho) //relaxation time
printf("Relaxation time(in s)")
disp(T)
|