summaryrefslogtreecommitdiff
path: root/3840/CH8/EX8.4/Ex8_4.sce
blob: a59bf0d07ca89ba68df94197da86ae9e74d37daa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clear
//
//
//

//Variable declaration
e=1.6*10**-19     //charge(c)
RH=3.22*10**-4    //hall coefficient(m**3C-1)
rho=8.5*10**-3    //resistivity(ohm m)

//Calculation
p=1/(RH*e)        //hole concentration(m-3)
mewp=RH/rho       //hole mobility(m**2/Vs)

//Result
printf("\n hole concentration is %0.1f  *10**21 m-3",p/10**21)
printf("\n hole mobility is %0.5f  m**2/Vs",mewp)