summaryrefslogtreecommitdiff
path: root/848/CH6/EX6.2/Example6_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '848/CH6/EX6.2/Example6_2.sce')
-rwxr-xr-x848/CH6/EX6.2/Example6_2.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/848/CH6/EX6.2/Example6_2.sce b/848/CH6/EX6.2/Example6_2.sce
new file mode 100755
index 000000000..830baf156
--- /dev/null
+++ b/848/CH6/EX6.2/Example6_2.sce
@@ -0,0 +1,15 @@
+//clear//
+//Caption: Calculation of Quantum efficiency
+//Example6.2
+//page 226
+clear;
+clc;
+close;
+Ip_q = 5.4*(10^6);//electron-hole pairs generated
+Pin_hv = 6*(10^6);//number of incident photons
+etta = Ip_q/Pin_hv;
+disp(etta,'Quantum efficiency =')
+disp(etta*100,'Quantum efficiency in percentage =')
+//Result
+//Quantum efficiency = 0.9
+//Quantum efficiency in percentage = 90.