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 /506/CH7/EX7.2.b/Examle7_2b.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 '506/CH7/EX7.2.b/Examle7_2b.sce')
-rwxr-xr-x | 506/CH7/EX7.2.b/Examle7_2b.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/506/CH7/EX7.2.b/Examle7_2b.sce b/506/CH7/EX7.2.b/Examle7_2b.sce new file mode 100755 index 000000000..8e7ebc36a --- /dev/null +++ b/506/CH7/EX7.2.b/Examle7_2b.sce @@ -0,0 +1,26 @@ +clear;
+clc;
+
+//Caption:Fabrication and Characteristics
+//Given Data
+y = 2.2;//from the figure y=2.2
+Nob = 5*10^18//Uniform Concentration of Boron Profile
+
+//y = 2.7/(2*(D*t)^0.5)
+//2*(D*t)^0.5 = a(let)
+a = 2.7/y;
+x = 2;//distance at which emitter junction is formed in micrometer
+Nb = Nob*erfc(x/a);//boron Profile
+
+//At x=2 Np = Nb
+//erfc(2/(2*(D*t)^0.5))=k
+Nop=10^21;
+k = Nb/Nop;
+a = 2/2.7;
+//Time allowed for diffusion if diffusion of Phosphorous is conducted at 1100 degreeC
+//From the figure D=3.8*10^-13 cm^2/sec
+D=3.8*10^-13//in cm^2/sec
+t = ((a*10^-4)/2)^2*(1/D);
+disp('sec',t,'t=');
+
+//end
\ No newline at end of file |