summaryrefslogtreecommitdiff
path: root/2129/CH1/EX1.18.3/ex1_18_3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2129/CH1/EX1.18.3/ex1_18_3.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2129/CH1/EX1.18.3/ex1_18_3.sce')
-rwxr-xr-x2129/CH1/EX1.18.3/ex1_18_3.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2129/CH1/EX1.18.3/ex1_18_3.sce b/2129/CH1/EX1.18.3/ex1_18_3.sce
new file mode 100755
index 000000000..d2f4092f8
--- /dev/null
+++ b/2129/CH1/EX1.18.3/ex1_18_3.sce
@@ -0,0 +1,13 @@
+//Exa1.18.3
+clc;
+clear;
+close;
+// Given data
+T1 = 300;// in K
+T2 = 400;// in K
+del_E = 0.27;// Fermi level in eV
+KT = (0.0259) * (T2/T1);// in eV
+N_v = 1.04 * 10^19;// in cm^-3
+N_v = N_v * (T2/T1)^(3/2);// in cm^-3
+p_o = N_v * exp(-(del_E)/KT);// in per cm^3
+disp(p_o,"The thermal equilibrium hole concentration in per cm^3 is");