diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1826/CH7/EX7.12/ex7_12.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1826/CH7/EX7.12/ex7_12.sce')
-rwxr-xr-x | 1826/CH7/EX7.12/ex7_12.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/1826/CH7/EX7.12/ex7_12.sce b/1826/CH7/EX7.12/ex7_12.sce new file mode 100755 index 000000000..0b219f1d4 --- /dev/null +++ b/1826/CH7/EX7.12/ex7_12.sce @@ -0,0 +1,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)
|