summaryrefslogtreecommitdiff
path: root/2912/CH9/EX9.7/Ex9_7.sce
blob: 1c31463acabd562ca7b6282db312bf23eefcfa37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// chapter 9
// example 9.7
// find density of hole carriers at room temperature
// page 274-275
clear;
clc;
// given
ni=1E20; // in /m^3 (intrinsic carrier density)
ND=1E21; // in /m^3 (donor impurity concentration)
// calculate
nh=ni^2/ND; // calculation of density of hole carriers at room temperature
printf('\nThe density of hole carriers at room temperature is \tnh=%1.0E /m^3',nh);
// Note: answer in the book is wrong due to printing mistake