blob: 6f7a4169b552ca7aa4131fa0341a1d567f28fb72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Example 19.2 // position of fermi level
clc;
clear;
//given data :
//2(2%pikm/h2)^1.5=p(assume) it is a constant
p=4.83D21;//constant
nd=5D22;// concentration of donor atoms in atoms/m3
T=300;// temperature in kelvin
k=1.38D-23;// Boltzmann constant
E=k*T*log(p*T^1.5/nd);//formula for calcilation
E=E/1.6D-19;//to convert in eV
disp(E,"position of fermi level in eV")
|