diff options
Diffstat (limited to '3740/CH7/EX7.6')
-rw-r--r-- | 3740/CH7/EX7.6/Ex7_6.jpg | bin | 0 -> 53479 bytes | |||
-rw-r--r-- | 3740/CH7/EX7.6/Ex7_6.sce | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/3740/CH7/EX7.6/Ex7_6.jpg b/3740/CH7/EX7.6/Ex7_6.jpg Binary files differnew file mode 100644 index 000000000..118ce0d0c --- /dev/null +++ b/3740/CH7/EX7.6/Ex7_6.jpg diff --git a/3740/CH7/EX7.6/Ex7_6.sce b/3740/CH7/EX7.6/Ex7_6.sce new file mode 100644 index 000000000..5d4538df3 --- /dev/null +++ b/3740/CH7/EX7.6/Ex7_6.sce @@ -0,0 +1,16 @@ +//Optoelectronics - An Introduction, 2nd Edition by J. Wilson and J.F.B. Hawkes
+//Example 7.6
+//OS=Windows XP sp3
+//Scilab version 5.5.2
+clc;
+clear;
+
+//given
+e=1.6e-19;//Electronic charge in C
+Epsilonr=11.7;//Relative permittivity of medium
+Epsilon0=8.85e-12;//Permittivity of free space in SI Units
+Nd=5e21;//Doping level of the diode in m^-3
+V=100;//Reverse bias voltage in V
+
+xn=sqrt(2*Epsilon0*Epsilonr*V/(e*Nd));//Depletion region thickness in m
+mprintf("\n xn = %.1f um",xn/1e-6);//Dividing by10^(-6) to convert to um
|