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 /2720/CH3/EX3.21.8 | |
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 '2720/CH3/EX3.21.8')
-rwxr-xr-x | 2720/CH3/EX3.21.8/ex3_21_8.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2720/CH3/EX3.21.8/ex3_21_8.sce b/2720/CH3/EX3.21.8/ex3_21_8.sce new file mode 100755 index 000000000..292dbb585 --- /dev/null +++ b/2720/CH3/EX3.21.8/ex3_21_8.sce @@ -0,0 +1,17 @@ +// Exa 3.21.8
+clc;
+clear;
+close;
+//Given data
+n_i = 2.5 * 10^13;
+Mu_n = 3800;
+Mu_p = 1800;
+q = 1.6 * 10^-19;// in C
+Sigma = n_i * (Mu_n + Mu_p) * q;// in (ohm-cm)^-1
+Rho = 1/Sigma;// in ohm-cm
+Rho= round(Rho);
+disp(Rho,"The resistivity of intrinsic germanium in ohm-cm is");
+N_D = 4.4 * 10^22/(1*10^8);// in atoms/cm^3
+Sigma_n = N_D * Mu_n * q;// in (ohm-cm)^-1
+Rho_n = 1/Sigma_n;// in ohm-cm
+disp(Rho_n,"If a donor type impurity is added to the extent of 1 atom per 10^8 Ge atoms, then the resistivity drops in ohm-cm is");
|