From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 506/CH7/EX7.2.b/Examle7_2b.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 506/CH7/EX7.2.b/Examle7_2b.sce (limited to '506/CH7/EX7.2.b/Examle7_2b.sce') 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 -- cgit