diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3822/CH4/EX4.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3822/CH4/EX4.1')
-rw-r--r-- | 3822/CH4/EX4.1/Ex4_1.jpg | bin | 0 -> 241087 bytes | |||
-rw-r--r-- | 3822/CH4/EX4.1/Ex4_1.sce | 23 |
2 files changed, 23 insertions, 0 deletions
diff --git a/3822/CH4/EX4.1/Ex4_1.jpg b/3822/CH4/EX4.1/Ex4_1.jpg Binary files differnew file mode 100644 index 000000000..846a79597 --- /dev/null +++ b/3822/CH4/EX4.1/Ex4_1.jpg diff --git a/3822/CH4/EX4.1/Ex4_1.sce b/3822/CH4/EX4.1/Ex4_1.sce new file mode 100644 index 000000000..fd48bb46a --- /dev/null +++ b/3822/CH4/EX4.1/Ex4_1.sce @@ -0,0 +1,23 @@ + +//Optoelectronics and Fiber Optics Communication by C.R. Sarkar and D.C. Sarkar
+//Example 4.1
+//OS = Windows 7
+//Scilab version 5.5.2
+
+clc;
+clear;
+
+//given
+h=6.62*10^-34;//Plank's constant in SI units
+c=3*10^8;//speed of the light in m/s
+e=1.9*10^-19;//electric charge in columb
+I=50*10^-3;//drive current in A
+lamda=0.85*10^-6;//peak emission wavelength in m
+taur=50*10^-9;//radiative carrier life time in s
+taunr=100*10^-9;//nonradiative carrier life time in s
+Tp=(taur*taunr)/(taur+taunr);///total carrier life time in s
+etaint=Tp/taur;//equation of internal efficiency
+c1=(I*h*c)/(e*lamda);//constant value
+Pint=(etaint)*c1;//internal optical power generated in W
+mprintf("\n Total carrier life time is =%.2fns ",Tp*1e9);//multiplication by 1e9 for conversion of unit from s to ns
+mprintf("\n Optical power generated internally is= %.2f mW ",Pint*1e3);//multiplication by 1e3 for conversion of unit from W to mW//the answer vary due to rounding
|