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 /2129/CH1/EX1.21.4 | |
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 '2129/CH1/EX1.21.4')
-rwxr-xr-x | 2129/CH1/EX1.21.4/ex1_21_4.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2129/CH1/EX1.21.4/ex1_21_4.sce b/2129/CH1/EX1.21.4/ex1_21_4.sce new file mode 100755 index 000000000..16ac42e88 --- /dev/null +++ b/2129/CH1/EX1.21.4/ex1_21_4.sce @@ -0,0 +1,12 @@ +// Exa1.21.4
+clc;
+clear;
+close;
+// Given data
+Rho = 0.3623 * 10^-3;// in Ohm m
+Sigma = 1/Rho;//in mho/m
+D = 4.42 * 10^28;// Ge density in atom/m^3
+n_d = D / 10^6;// in atom/m^3
+e = 1.6 * 10^-19;// in C
+Mu = Sigma/(n_d * e);// in m^2/V.sec
+disp(Mu,"The mobility of electron in germanium in m^2/V.sec is");
|