summaryrefslogtreecommitdiff
path: root/3543/CH6/EX6.37
diff options
context:
space:
mode:
Diffstat (limited to '3543/CH6/EX6.37')
-rw-r--r--3543/CH6/EX6.37/EX6_37.pngbin0 -> 34982 bytes
-rw-r--r--3543/CH6/EX6.37/Ex6_37.sce29
2 files changed, 29 insertions, 0 deletions
diff --git a/3543/CH6/EX6.37/EX6_37.png b/3543/CH6/EX6.37/EX6_37.png
new file mode 100644
index 000000000..b2bbaf9f5
--- /dev/null
+++ b/3543/CH6/EX6.37/EX6_37.png
Binary files differ
diff --git a/3543/CH6/EX6.37/Ex6_37.sce b/3543/CH6/EX6.37/Ex6_37.sce
new file mode 100644
index 000000000..e21832bb6
--- /dev/null
+++ b/3543/CH6/EX6.37/Ex6_37.sce
@@ -0,0 +1,29 @@
+// Example 6.37
+// Calculation of a) quantum efficiency b) responsivity
+// Page no 494
+
+clc;
+clear;
+close;
+
+//Given data
+e5=500; // No of incident photons
+e8=800; // No of incident electrons
+e=1.602*10^-19; // Charge of an electron
+lambda=1.3*10^-6; // Wavelength
+h=6.626*10^-34; // Planck constant
+c=3*10^8; // Velocity of light
+I=15*10^-6; // Photocurrent
+P=0.6*10^-6;
+
+// a)Quantum efficiency
+n=e5/e8;
+// b)Responsivity
+R=(n*e*lambda)/(h*c);
+
+
+//Displaying results in the command window
+printf("\n Quantum efficiency (percent) = %0.1f ",n*100);
+printf("\n Responsivity(in A/W) = %0.3f ",R);
+
+// The answers vary due to round off error