summaryrefslogtreecommitdiff
path: root/3638/CH13/EX13.9/Ex13_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3638/CH13/EX13.9/Ex13_9.sce')
-rw-r--r--3638/CH13/EX13.9/Ex13_9.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3638/CH13/EX13.9/Ex13_9.sce b/3638/CH13/EX13.9/Ex13_9.sce
new file mode 100644
index 000000000..f76e16086
--- /dev/null
+++ b/3638/CH13/EX13.9/Ex13_9.sce
@@ -0,0 +1,18 @@
+//Introduction to Fiber Optics by A. Ghatak and K. Thyagarajan, Cambridge, New Delhi, 1999
+//Example 13.9
+//OS=Windows XP sp3
+//Scilab version 5.5.2
+clc;
+clear;
+//given
+P=500e-9;//Optical power in W
+R=0.45;//Responsivity in A/W
+Rl=1000;//Value of load resistor in Ohms
+e=1.6e-19//Electronic charge in C
+kB=1.38e-23;//Boltzmann constant in SI Units
+T=300;//Missing data- Temperature in K
+x=1;//Excess noise
+Id=0;//Since the dark current is neglected in the example
+
+Mop=(4*kB*T/(x*e*Rl*(R*P+Id)))^(1/(x+2));//Optimum value of internal gain corresponding to input optical power P
+mprintf("Mop= %.1f",Mop);