diff options
Diffstat (limited to '3740/CH2/EX2.2/Ex2_2.sce')
-rw-r--r-- | 3740/CH2/EX2.2/Ex2_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3740/CH2/EX2.2/Ex2_2.sce b/3740/CH2/EX2.2/Ex2_2.sce new file mode 100644 index 000000000..68737ad22 --- /dev/null +++ b/3740/CH2/EX2.2/Ex2_2.sce @@ -0,0 +1,14 @@ +//Optoelectronics - An Introduction, 2nd Edition by J. Wilson and J.F.B. Hawkes
+//Example 2.2
+//OS=Windows XP sp3
+//Scilab version 5.5.2
+clc;
+clear;
+
+//given
+//Let the quanity 'me/m' be denoted by M
+M=0.26;
+Epsilonr=11.8//relative permittivity of Si
+
+Ed=13.6*M/(Epsilonr^2);//Energy required to excite the electrons from donor levels to the conduction band in eV
+mprintf("Ed = %.3f eV", Ed);
|