diff options
Diffstat (limited to '3543/CH6/EX6.39')
-rw-r--r-- | 3543/CH6/EX6.39/EX6_39.png | bin | 0 -> 42522 bytes | |||
-rw-r--r-- | 3543/CH6/EX6.39/EX6_39.sce | 32 |
2 files changed, 32 insertions, 0 deletions
diff --git a/3543/CH6/EX6.39/EX6_39.png b/3543/CH6/EX6.39/EX6_39.png Binary files differnew file mode 100644 index 000000000..447dbf023 --- /dev/null +++ b/3543/CH6/EX6.39/EX6_39.png diff --git a/3543/CH6/EX6.39/EX6_39.sce b/3543/CH6/EX6.39/EX6_39.sce new file mode 100644 index 000000000..c3e714118 --- /dev/null +++ b/3543/CH6/EX6.39/EX6_39.sce @@ -0,0 +1,32 @@ +// Example 6.39
+// Calculation of a) operating wavelength b) incidence optical power
+// Page no 495
+
+clc;
+clear;
+close;
+
+//Given data
+n=0.60 // Quantum efficiency
+E=1.5*10^-19; // Photons of energy
+e=1.602*10^-19; // Charge of an electron
+h=6.626*10^-34; // Planck constant
+c=3*10^8; // Velocity of light
+I=2*10^-6; // Photocurrent
+
+
+// a)Operating wavelength
+lambda=(h*c)/E;
+lambda=lambda*10^6;
+
+// b)Incident optical power
+R=(n*e)/E;
+P=I/R;
+P=P*10^6;
+
+
+//Displaying results in the command window
+printf("\n Wavelength of photodiode (in micrometer)= %0.2f ",lambda);
+printf("\n Incident optical power(in microWatt) = %0.2f ",P);
+
+// The answers vary due to round off error
|