summaryrefslogtreecommitdiff
path: root/2672/CH4/EX4.20/Ex4_20.sce
blob: 757c20c2f9638869386e32b29714940c028b1c1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Example 4_20
clc;
clear;
close;
format('e',9);
//given data : 
ni=1.5*10^10;//cm^-3
mu_n=1350;//cm^2/V-s
mu_p=450;//cm^2/V-s
n0=ni*sqrt(mu_p/mu_n);//cm^-3
p0=ni*sqrt(mu_n/mu_p);//cm^-3
disp(n0,"Electron concentration(cm^-3)")
disp(p0,"Hole concentration(cm^-3)")