summaryrefslogtreecommitdiff
path: root/3828/CH12/EX12.3/Ex12_3.sce
blob: 712712f20804868f9e889621040bee2d52a0b4cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Chapter 12 : Semiconductor Physics

clear;

//Variable declaration
myun=0.39              //mobility of electrons 
myup=0.21              //mobility of holes
ni=2.5*10**19          //intrinsic concentration 
e=1.6*10**-19  

//Calculations
sigmai=ni*e*(myun+myup) //conductivity of intrinsic semiconductor
rhoi=1/sigmai

//Result
mprintf("Conductivity = %.1f ohm**-1-m**-1",sigmai)
mprintf("\nResistivity= %.2f ohm-m",rhoi)
//The answer provided in the textbook is wrong