diff options
Diffstat (limited to '2342/CH3/EX3.9')
-rwxr-xr-x | 2342/CH3/EX3.9/EX3_9.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2342/CH3/EX3.9/EX3_9.sce b/2342/CH3/EX3.9/EX3_9.sce new file mode 100755 index 000000000..140c4a388 --- /dev/null +++ b/2342/CH3/EX3.9/EX3_9.sce @@ -0,0 +1,12 @@ +// Exa 3.9
+format('v',8)
+clc;
+clear;
+close;
+// Given data
+n_i = 10^16;// in /m3
+N_D = 10^22;// in /m^3
+n = N_D;// in /m^3
+disp(n,"Electron concentration per m^3 is");
+p = (n_i)^2/n;// in /m^3
+disp(p,"Hole concentration per m^3 is");
|