summaryrefslogtreecommitdiff
path: root/3492/CH1/EX1.10/Ex1_10.sce
blob: 55b46cae68ed9f6f4a4313003fc77c9e99e5e253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
clc
//Chapter1
//Ex_1.10
//Given
NA=6.023*10^23 //mol^-1
d=2.33 //density of Si in g/cm3
Mat=28.09//g/mol
Ev=2.4 //ev/atom
Ev=2.4*1.6*10^-19 //J/atom
k=1.38*10^-23 //J/K
T=300 //kelvin
T1=1000//degree celcius
T1=T1+273 //in kelvin
N= (NA*d)/Mat
//at room temperature
nv=N*exp(-(Ev/(k*T)))
disp(nv,"concentration of vacancies in a Si crystal at room temperature in cm^-3 is")
//at 1000 degree celcius
nv=N*exp(-(Ev/(k*T1)))
disp(nv,"concentration of vacancies in a Si crystal at 1000 degree celcius in cm^-3 is")