summaryrefslogtreecommitdiff
path: root/2825/CH2/EX2.5/Ex2_5.sce
blob: e08120f5ff3c0f3611ea140016bb05b2bc8beb2c (plain)
1
2
3
4
5
6
7
8
9
//Ex2_5 Pg-88
clc
disp("sigma_n = u_n*e*N_d")
e=1.6*1e-19 //electron charge
sigma=5 //conductivity in mho/cm
un=3850 //mobility of electrons
Nd=sigma/(e*un) //concentration
printf("Number density of donor atoms = %.1f*1e16 per cm^3",Nd*1e-16)
//the answer in the book is wrong the correct answer is 0.8*1e16 per cm^3