blob: a615e99c1b86b7ea36a98098ef2b726bad8d5bec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//Example 7.7, Page Number 334
//Response time of photodiode
clc;
it=2*(10**-6) //I-region thickness in metres
A=(100*(10**-6))*(100*(10**-6)) //Given Area in metres
lr=50 //Load resistor in ohms
v=10**5 //Saturation Velocity in Metre/second
er=12 //relative permittivity of InGaAs
k=8.85*(10**-12) //Absolute permittivity in farads per meter
t=it/v //Transit Velocity of electrons in m/s
//From equation 7.34
cj=(A*k*er)/it //cj is the device capacitance in farads
trc=cj*lr //in seconds
total=sqrt((t**2)+(trc**2)) //total is the total response time
mprintf("The Device Capacitance is:%0.1e F\n",cj)
mprintf(" The Total response time for the detector is:%.2e s",total)
|