blob: 186b145d04389ea6fa045f4dec63e187ca34be9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc;clear;
//Example 18.5
//calculation of resistivity
//given values
e=1.6*10^-19;
ni=2.5*10^19;//intrinsic density of carriers per m^3
ue=.39;//mobility of e
uh=.19;//mobility of hole
//calculation
c=e*ni*(ue+uh);//conductivity
r=1/c;//resistivity
disp(r,'resistivity in ohm m is');
|