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/CH6/EX6.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/CH6/EX6.1')
-rw-r--r-- | 3822/CH6/EX6.1/Ex6_1.jpg | bin | 0 -> 237773 bytes | |||
-rw-r--r-- | 3822/CH6/EX6.1/Ex6_1.sce | 22 |
2 files changed, 22 insertions, 0 deletions
diff --git a/3822/CH6/EX6.1/Ex6_1.jpg b/3822/CH6/EX6.1/Ex6_1.jpg Binary files differnew file mode 100644 index 000000000..2da67a647 --- /dev/null +++ b/3822/CH6/EX6.1/Ex6_1.jpg diff --git a/3822/CH6/EX6.1/Ex6_1.sce b/3822/CH6/EX6.1/Ex6_1.sce new file mode 100644 index 000000000..2793b9b5a --- /dev/null +++ b/3822/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,22 @@ + +//Optoelectronics and Fiber Optics Communication by C.R. Sarkar and D.C. Sarkar
+//Example 6.1
+//OS = Windows 7
+//Scilab version 5.5.2
+
+clc;
+clear;
+
+//given
+eta=0.70;//quantum efficiency
+E=2.2*10^-19;//energy of the photons in Joule
+Ip=2*10^-6;//photocurrent in A //the value in question is different from that used in solution in question it is mA and in solution it is uA
+h=6.62*10^-34;//Planck's constant in SI units
+c=3*10^8;//speed of the light in m/s
+e=1.9*10^-19;//electric charge in coulomb
+lamda=(h*c)/E;//operating wavelength of the photodiode in m
+f=c/lamda;//frequency in Hz
+R=(eta*e)/(h*f);//Responsivity in A/W
+Po=Ip/R;//incident power in W
+mprintf("\n Operating wavelength of the photodiode is= %.2f um",lamda*1e6);//multiplication by 1e6 for conversion of unit from m to um
+mprintf("\n Incident power is =%.2f uW",Po*1e6);//multiplication by 1e6 for conversion of unit from W to uW
|