diff options
Diffstat (limited to '3850/CH45/EX45.2/Ex45_2.sce')
-rw-r--r-- | 3850/CH45/EX45.2/Ex45_2.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/3850/CH45/EX45.2/Ex45_2.sce b/3850/CH45/EX45.2/Ex45_2.sce new file mode 100644 index 000000000..9b1e3bd5d --- /dev/null +++ b/3850/CH45/EX45.2/Ex45_2.sce @@ -0,0 +1,25 @@ +
+
+//To Calculate the Resistivity of n type semiconductor
+
+//Example 45.2
+
+clear;
+
+clc;
+
+e=1.6*10^-19;//charge on an electron in Coloumbs
+
+ne=8*10^19;//Density of Conduction Electron per metre^3
+
+ue=2.3;//Mobility of Conduction Electron in m^2/V-s
+
+nh=5*10^18;//Density of holes per metre^3
+
+uh=10^-2;//Mobility of holes per m^2/V-s
+
+c=e*((ne*ue)+(nh*uh));//Conductivity of the Semiconductor in C/(m-V-s)
+
+rho=1/c;//Resistivity of Semiconductor in ohm-metre
+
+printf("Resistivity of the n-type semiconductor = %.3f ohm-m",rho);//The answer provided in the textbook is wrong
|