Question

In: Electrical Engineering

1) For a p-n junction in thermal equilibrium, write your own codes in Matlab to calculate...

1) For a p-n junction in thermal equilibrium, write your own codes in Matlab to calculate and plot the electric field distribution across the p-n junction along with appropriate axes labeling.

Solutions

Expert Solution

MATLAB CODE

clc;
es=input('Enter value of es = '); % permivity of Si
Na=input('Enter value of Na in cm^-3 = '); % Na
Nd=input('Enter value of Nd in cm^-3 = '); % Nd
x=-2e-6:1e-7:2e-6; % x axis to represent diatnace from junction
q=1.6*10-19; % charge on electron
E=zeros(1,length(x));
for i=1:length(x)
if(x(i)<0) % for N side
E(i)=q*Na*x(i)/es; % electric field on n side
end
if(x(i)>=0)
E(i)=-q*Nd*x(i)/es; % for P side
end

end
plot(x,E)
xlabel('Distance from junction(x) in m')
ylabel('Electric Field in V/m')
title('Electric Field in PN junction')

RESULT:


Related Solutions

condidering a forward bias n-p junction and reverse bias n-p junction, which one produces a rectifying...
condidering a forward bias n-p junction and reverse bias n-p junction, which one produces a rectifying action? explain how it produces the rectifying action
Define the limitations in the operation conditions of a p-n junction.
Define the limitations in the operation conditions of a p-n junction.
1. Consider a gas of molecules in thermal equilibrium with temperature T and a number n...
1. Consider a gas of molecules in thermal equilibrium with temperature T and a number n per area, confined to a 2-D flat surface. -What is the kinetic energy per area of the gas? -What is the force per length that these molecules exert on an edge of the surface? -If there are diatomic molecules, what is the rotational energy per area of the gas? (Assume that each atom of each molecules is confined to a flat surface)
Explain how a p - n junction works like a solar cell.
Explain how a p - n junction works like a solar cell.
Consider a Si p-n junction connected p-type and n-type semiconductors each doped 1017 /cm3 concentration, in...
Consider a Si p-n junction connected p-type and n-type semiconductors each doped 1017 /cm3 concentration, in temperature 50K, 350K, 650K Suppose occur energy state of conduction band quantization due to the junction make very small. If Si p-n junction has only three DOS(density of state) in conduction band and valence band, Discuss band diagrams and I-V curve.
1) Given a silicon p-n junction diode. Consider there are ND = 1E16 cm-3 in its...
1) Given a silicon p-n junction diode. Consider there are ND = 1E16 cm-3 in its conduction band while NA = 1E17 cm-3 . (i) At thermal equilibrium, calculate built-in potential (Vbi) using band diagram (no formulae). On the n-side, estimate the electron concentration and flux at q*Vbi above the conduction band. (ii) Now a forward bias VA is applied. On the n-side, estimate the electron concentration and flux at the same energy level at part (i). Hence show that...
Explain how a p-n junction can act as an LED, and if configured correctly as a...
Explain how a p-n junction can act as an LED, and if configured correctly as a laser. (What are the requirements for it to act as a laser?)
A p-n step junction is made in silicon with Na = 1.5x1016 cm-3 and Nd =...
A p-n step junction is made in silicon with Na = 1.5x1016 cm-3 and Nd = 6.5x1016 cm-3. Assume T = 300K. Calculate the following: (a) the built-in potential Vbi (b) the total depletion layer width W and depletion into the n (Wn) and p (Wp) sides at zero bias (c) the maximum electric field at zero bias (d) the maximum electric field at 7V reverse bias (e) Sketch the energy band diagram, charge density distribution, electric field distribution, and...
In order to increase the efficiency of a p-n junction LED, what different architecture can be...
In order to increase the efficiency of a p-n junction LED, what different architecture can be used and how is the increased efficiency achieved?
a) Draw the energy levels (including the Fermi levels) of a non-degenerate p-n junction with a...
a) Draw the energy levels (including the Fermi levels) of a non-degenerate p-n junction with a reverse bias of Vr. Draw the hole and electron concentrations as well. b) If this pn junction is used as a photodetector, what is the threshold wavelength of this detector? Will lower or higher wavelengths be detected by this detector?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT