summaryrefslogtreecommitdiff
path: root/3636/CH3/EX3.14/Ex3_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '3636/CH3/EX3.14/Ex3_14.sce')
-rw-r--r--3636/CH3/EX3.14/Ex3_14.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3636/CH3/EX3.14/Ex3_14.sce b/3636/CH3/EX3.14/Ex3_14.sce
new file mode 100644
index 000000000..55afc5b47
--- /dev/null
+++ b/3636/CH3/EX3.14/Ex3_14.sce
@@ -0,0 +1,11 @@
+clc;
+clear;
+ni=1.5*10^10 //in cm^-3
+Ex=0.6 //position of energy level in eV
+Const=0.0259 //constant value for kT in eV
+
+//Calculation
+n0=ni*exp(Ex/Const)
+
+mprintf("concentration of doping= %.3e cm^-3",n0) //The answers vary due to round off error
+