summaryrefslogtreecommitdiff
path: root/377/CH15/EX15.1
diff options
context:
space:
mode:
Diffstat (limited to '377/CH15/EX15.1')
-rw-r--r--377/CH15/EX15.1/15_1.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/377/CH15/EX15.1/15_1.sce b/377/CH15/EX15.1/15_1.sce
new file mode 100644
index 000000000..0eadb41ac
--- /dev/null
+++ b/377/CH15/EX15.1/15_1.sce
@@ -0,0 +1,8 @@
+disp("T=Tr*Tnr/(Tr+Tnr)");
+Tr=60;
+Tnr=100;
+T=Tr*Tnr/(Tr+Tnr);
+printf('\n Total carrier recombination lifetime is %fnS',T);
+disp("η=T/Tr");
+n=T/Tr;
+printf('\n The internal quantum efficiency is %fpercent',n*100); \ No newline at end of file