diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2444/CH1/EX1.19 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2444/CH1/EX1.19')
-rwxr-xr-x | 2444/CH1/EX1.19/ex1_19.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2444/CH1/EX1.19/ex1_19.sce b/2444/CH1/EX1.19/ex1_19.sce new file mode 100755 index 000000000..8f4847bb1 --- /dev/null +++ b/2444/CH1/EX1.19/ex1_19.sce @@ -0,0 +1,13 @@ +// Exa 1.19
+clc;
+clear;
+close;
+format('v',5)
+// Given data
+E_FminusE_V = 0.39;// in eV
+kT = 0.026;// in ev
+//N_A1 = n_V * (%e^(-E_FminusE_V)/kT) (i)
+// N_A2=3*N_A1=n_V * (%e^(-E_F2minusE_V)/kT) (ii)
+//From eq(i) and (ii)
+E_F2minusE_V = kT*(15-log(3));// in eV
+disp(E_F2minusE_V,"The new position of fermi level in eV is");
|