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 /2498/CH1/EX1.7 | |
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 '2498/CH1/EX1.7')
-rwxr-xr-x | 2498/CH1/EX1.7/ex1_7.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2498/CH1/EX1.7/ex1_7.sce b/2498/CH1/EX1.7/ex1_7.sce new file mode 100755 index 000000000..0de5a833b --- /dev/null +++ b/2498/CH1/EX1.7/ex1_7.sce @@ -0,0 +1,21 @@ +// Exa 1.7
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+miu_n = 3800;// cm^2/V-s
+miu_p = 1800;// cm^2/V-s
+n_i = 2.5*10^13;// in /cm^3
+Nge = 4.41*10^22;// in /cm^3
+q = 1.602*10^-19;// in C
+impurity = 10^8;
+// The number of donor atoms,
+N_D = Nge/impurity;//in /cm^3
+// The number of holes
+p = (n_i^2)/N_D;// in /cm^3
+// Conductivity of an N-type Ge,
+sigma = q*N_D*miu_n;// in (ohm-cm)^-1
+// The resistivity of the Ge
+rho = 1/sigma;// in ohm-cm
+disp(rho,"The resistivity of a dopped Ge in ohm-cm is");
|