summaryrefslogtreecommitdiff
path: root/3638/CH13/EX13.9/Ex13_9.sce
blob: f76e160867398580decf83384b1518ebd4b0c921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);