diff options
Diffstat (limited to '3636/CH3/EX3.14')
-rw-r--r-- | 3636/CH3/EX3.14/Ex3_14.sce | 11 | ||||
-rw-r--r-- | 3636/CH3/EX3.14/Ex3_14.txt | 1 |
2 files changed, 12 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
+
diff --git a/3636/CH3/EX3.14/Ex3_14.txt b/3636/CH3/EX3.14/Ex3_14.txt new file mode 100644 index 000000000..299f04788 --- /dev/null +++ b/3636/CH3/EX3.14/Ex3_14.txt @@ -0,0 +1 @@ + concentration of doping= 1.726e+20 cm^-3
\ No newline at end of file |