summaryrefslogtreecommitdiff
path: root/2045/CH1/EX1.3/Ex1_3.sce
blob: 8bbb0d2ae132b939b75c5f28d0950d150229852b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//pagenumber 26 example 3
clear
ni=2.5*10^13;//per square centimetre
moe=3800//square centimetre/velocity second
mo1=1800;//square centimetre/velocity second
num=4.51*10^22;//number of atoms
q=1.6*10^-19;
conduc=ni*q*(moe+mo1);
num=num/10^7;
impura=(ni^2)/num;
ni=5*10^14;
condu1=ni*q*moe;
disp("conductivity   =   "+string((conduc))+"second per centimetre");
disp("conductivity at extent of 1 impurity   =   "+string((condu1))+"second per centimetre");//there is mistake in book as 3.04s/cm
conduc=num*q*mo1;
disp("conductivity  acceptor to extent of 1 impurity   =   "+string((conduc))+"second per centimetre");