diff options
Diffstat (limited to '273/CH18/EX18.7/ex18_7.sce')
-rwxr-xr-x | 273/CH18/EX18.7/ex18_7.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/273/CH18/EX18.7/ex18_7.sce b/273/CH18/EX18.7/ex18_7.sce new file mode 100755 index 000000000..fb75eadbd --- /dev/null +++ b/273/CH18/EX18.7/ex18_7.sce @@ -0,0 +1,14 @@ +clc;clear;
+//Example 18.7
+//calculation of hole concentration
+
+//given values
+ni=2.4*10^19;//carrier concentration per m^3
+N=4*10^28;//concentration of ge atoms per m^3
+
+//calculation
+ND=N/10^6;//donor cocntrtn
+n=ND;//no of electrones
+
+p=ni^2/n;
+disp(p,'concentartion of holes per m^3 is');
\ No newline at end of file |