0% found this document useful (0 votes)
35 views3 pages

Experiment 1: Aim of The Experiment: Construct A Log-Log Plot of

The document describes an experiment to construct a log-log plot of electron and hole mobility versus doping density for silicon using given parameters. MATLAB code is provided to calculate and plot mobility versus doping concentration for silicon at 300K for a doping range of 10^14/cm^3 to 10^19/cm^3. The plot shows electron and hole mobility decreasing with increasing doping density.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views3 pages

Experiment 1: Aim of The Experiment: Construct A Log-Log Plot of

The document describes an experiment to construct a log-log plot of electron and hole mobility versus doping density for silicon using given parameters. MATLAB code is provided to calculate and plot mobility versus doping concentration for silicon at 300K for a doping range of 10^14/cm^3 to 10^19/cm^3. The plot shows electron and hole mobility decreasing with increasing doping density.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

1

Experiment 1

Aim of the Experiment: Construct a log-log plot of
n
and
p
versus N
A
or
N
D
for 10
14
/cm
3
N
A
or N
D
10
19
/cm
3
using the following relationship.

p = p
n
+
p
n
1 +(



)



Parameters for Si are given in the table below:


Electron and hole mobility in Silicon as a function of doping density.
















2




MATLAB CODE



%Mobility versus Dopant Concentration (Si,300K)

%Fit Parameters

NDref=1.3e17; NAref=2.35e17;

unmin=92; upmin=54.3;

un0=1268; up0=406.9;

an=0.91; ap=0.88;

%Mobility Calculation

N=logspace(14,19);

un=unmin+un0./(1+(N/NDref).^an);

up=upmin+up0./(1+(N/NAref).^ap);

%Plotting results

close

loglog(N,un,N,up); grid;

axis([1.0e14 1.0e19 1.0e1 1.0e4]);

xlabel('NA or ND (cm-3)');

ylabel('Mobility (cm2/V-sec)');

text(1.0e15,1500,'Electrons');

text(1.0e15,500,'Holes');

text(1.0e18,2000,'Si,300K');







3



Waveform





Result:A log-log plot of
n
and
p
versus N
A
or N
D
for 10
14
/cm
3
N
A
or
N
D
10
19
/cm
3
was plotted and studied.

You might also like