blob: 67444627fc92137516d287608d65e5b08e1cdc83 (
plain)
1
2
3
4
5
6
7
8
9
|
// Chapter 3_The Semiconductor in Equilibrium
//Caption_Equilibrium Distribution of Electrons and holes
//Ex_2//page 87
T=400;
N=1.04*(10^19)
kT=0.0259*(T/300);
Nv=N*(T/300)^(1.5)
po=Nv*(%e^(-0.27/kT))
printf('The thermal equilibrium hole concentration in silicon at T=400K ==%fd per cm^3 \n',po)
|