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 GaAs p-n junction diode. The p-type acceptor is Zn, with a dopant concentration of...
Consider a GaAs p-n junction diode. The p-type acceptor is Zn, with a dopant concentration of 2 x 10^17 cm^-3 and the n-tpye donor is Si, with a dopant concentration of 5 x 10^16 cm^-3. Working at temp= 300 K. a) Calculate the Fermi Level in the p-type material. Assume that the hole density is equal to the density of the p-dopant atoms. b) Performing the same calculation for the n-type material gives a fermi level of 1.363 eV. What...
Consider a GaAs p-n junction diode. The p-type acceptor is Zn, with a dopant concentration of...
Consider a GaAs p-n junction diode. The p-type acceptor is Zn, with a dopant concentration of 2 x 10^17 cm^-3 and the n-tpye donor is Si, with a dopant concentration of 5 x 10^16 cm^-3. Working at temp= 300 K. a) Calculate the Fermi Level in the p-type material. Assume that the hole density is equal to the density of the p-dopant atoms. b) Performing the same calculation for the n-type material gives a fermi level of 1.363 eV. What...
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?)
// ==== Challenge 1: Write your own closure ==== // Write a closure of your own...
// ==== Challenge 1: Write your own closure ==== // Write a closure of your own creation. // Keep it simple! Remember a closure is just a function // that manipulates variables defined in the outer scope. // The outer scope can be a parent function, or the top level of the script. /* STRETCH PROBLEMS, Do not attempt until you have completed all previous tasks for today's project files */ // ==== Challenge 2: Implement a "counter maker" function...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT