diff options
Diffstat (limited to '3740/CH2/EX2.8')
-rw-r--r-- | 3740/CH2/EX2.8/Ex2_8.jpg | bin | 0 -> 65189 bytes | |||
-rw-r--r-- | 3740/CH2/EX2.8/Ex2_8.sce | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/3740/CH2/EX2.8/Ex2_8.jpg b/3740/CH2/EX2.8/Ex2_8.jpg Binary files differnew file mode 100644 index 000000000..6f6e0abe4 --- /dev/null +++ b/3740/CH2/EX2.8/Ex2_8.jpg diff --git a/3740/CH2/EX2.8/Ex2_8.sce b/3740/CH2/EX2.8/Ex2_8.sce new file mode 100644 index 000000000..283dc9cb9 --- /dev/null +++ b/3740/CH2/EX2.8/Ex2_8.sce @@ -0,0 +1,16 @@ +//Optoelectronics - An Introduction, 2nd Edition by J. Wilson and J.F.B. Hawkes
+//Example 2.8
+//OS=Windows XP sp3
+//Scilab version 5.5.2
+clc;
+clear;
+
+//given
+Lz=10e-9;//Thickness of a GaAs quantum well in m
+m=9.1e-31;//Rest mass of an electron in kg
+me=0.068*m;//Mass of electrons in conduction band
+mh=0.56*m;//Mass of electrons in valence band
+h=6.62e-34;//Planck's constant in SI Units
+
+DeltaEg=(h^2)/(8*(Lz)^2)*(1/me+1/mh);//Energy gap in the GaAs quantum well
+mprintf("DeltaEg = %.2e J",DeltaEg);
|