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 /1511/CH2/EX2.16/ex2_16.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 '1511/CH2/EX2.16/ex2_16.sce')
-rwxr-xr-x | 1511/CH2/EX2.16/ex2_16.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1511/CH2/EX2.16/ex2_16.sce b/1511/CH2/EX2.16/ex2_16.sce new file mode 100755 index 000000000..954ea4124 --- /dev/null +++ b/1511/CH2/EX2.16/ex2_16.sce @@ -0,0 +1,12 @@ +// Example 2.16 page no-71
+clear
+clc
+
+A = 9.64 * 10^14
+EG = 0.25 //eV
+n1 = 6.25*10^26///cm^3
+na=3*10^14
+nd=2*10^14
+n=-(10^14)+(sqrt(10^28+4*6.25*10^26))
+n=n/2
+printf("\nn=%.1f*10^12 electrons/cm^3\np=%.2f*10^14 holes/cm^3\nAs p> n, this is p-type semiconductor.",n/10^12,(n+10^14)/10^14)
|