blob: 1d9f99fea2d1889883cfc6f146631111803b278a (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Ex1.19
clc
micro_n = 1300 //eletron mobility
rho_n = 2 //resistivity
e = 1.6*10^-19 //electron charge
disp("micro_n ="+string(micro_n)+" cm.sq/V-s")
disp("rho_n = "+string(rho_n)+"ohm-cm")
disp("e"+string(e)+"C")
disp("nn = 1/(e*micro_n*rho_n) = "+string(1/(e*micro_n*rho_n))+" e/cm.cube") //number of pentavalent impurity
|