diff options
Diffstat (limited to '2444/CH1/EX1.18/ex1_18.sce')
-rwxr-xr-x | 2444/CH1/EX1.18/ex1_18.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2444/CH1/EX1.18/ex1_18.sce b/2444/CH1/EX1.18/ex1_18.sce new file mode 100755 index 000000000..a61bcdfd5 --- /dev/null +++ b/2444/CH1/EX1.18/ex1_18.sce @@ -0,0 +1,15 @@ +// Exa 1.18
+clc;
+clear;
+close;
+format('v',7)
+// Given data
+E_CminusE_F = 0.24;// in eV
+T = 300;// in K
+T1 = 350;// in K
+// E_CminusE_F = K*T*log(n_c/N_D) (i)
+// E_CminusE_F1 =K*T1*log(n_C/N_D) (ii)
+// From eq(i) and (ii)
+E_CminusE_F1 = E_CminusE_F*(T1/T);// in eV
+disp("The new position of the Fermi level lies "+string(E_CminusE_F1)+" eV below the conduction band")
+
|