blob: caa2620c982cc35f8b14fbd0df70a9946ab230fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Chapter 12 : Semiconductor Physics
clear;
//Variable declaration
myun=0.36 //mobility of electrons
myup=0.14 //mobility of holes
e=1.6*10**-19
rhoi=2.2 //resistivity
//Calculations
ni=1/(rhoi*e*(myun+myup))/10**18
//Result
mprintf("Intrinsic concentration= %.3f*10**18 m**-3",ni)
|