From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3740/CH7/EX7.6/Ex7_6.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 3740/CH7/EX7.6/Ex7_6.sce (limited to '3740/CH7/EX7.6/Ex7_6.sce') 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 -- cgit