summaryrefslogtreecommitdiff
path: root/2912/CH9/EX9.11/Ex9_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '2912/CH9/EX9.11/Ex9_11.sce')
-rwxr-xr-x2912/CH9/EX9.11/Ex9_11.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2912/CH9/EX9.11/Ex9_11.sce b/2912/CH9/EX9.11/Ex9_11.sce
new file mode 100755
index 000000000..025d07c1d
--- /dev/null
+++ b/2912/CH9/EX9.11/Ex9_11.sce
@@ -0,0 +1,19 @@
+// chapter 9
+// example 9.11
+// Find the conductivity of p-type Ge crystal
+// page 276-277
+clear;
+clc;
+//given
+uh=1900; // in cm^2/V-s (mobility of electron)
+Na=2E17;// in /m^3 (acceptor doping concentration)
+e=1.6E-19; // in C(charge of electron)
+//calculate
+uh=uh*1E-4; // changing unit from cm^2/V-s to m^2/V-s
+Na=Na*1E6; // changing unit from 1/cm^3 to 1/m^3
+nh=Na; // hole concentration
+// since sigma=ne*ue*e+nh*uh*e and nh>>ne
+// therefore sigma=nh*uh*e
+sigma=nh*uh*e; // calculation of conductivity
+printf('\nThe conductivity of p-type Ge crystal is \t%.f /ohm-m',sigma);
+// Note: there is slight variation in the answer due to round off calculation