diff options
Diffstat (limited to '3543/CH5/EX5.26/Ex5_26.sce')
-rw-r--r-- | 3543/CH5/EX5.26/Ex5_26.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/3543/CH5/EX5.26/Ex5_26.sce b/3543/CH5/EX5.26/Ex5_26.sce new file mode 100644 index 000000000..cf5c87c3f --- /dev/null +++ b/3543/CH5/EX5.26/Ex5_26.sce @@ -0,0 +1,28 @@ +// Example 5.26
+// Computation of (a) wavelength (b) power and (c) resposivity
+// page no 488
+
+clc;
+clear;
+close;
+
+//Given data
+e=0.7; // Quantum efficiency
+c=3*10^8; // Speed of light
+h=6.62*10^-34 // Planck constant
+E=1.5*10^-19; // Energy of photons
+e1=1.6*10^-19; // Electronic charge
+I=4*10^-6; // Diode photocurrent
+// (a) Wavelength of operation
+lambda=h*c/E;
+
+// (b) Responsivity
+R=e*(lambda*e1)/(h*c); //
+
+// (c) Incident optical power
+p=I/R; //power
+
+//Display result on command window
+printf("\n Wavelength of operation (micrometer)= %0.3f ",lambda*10^6);
+printf("\n Responsivity R (A/W) = %0.3f ",R);
+printf("\n output power P (microwWatt) = %0.3f ",p*10^6);
|