summaryrefslogtreecommitdiff
path: root/1061/CH5/EX5.20/Ex5_20.sce
blob: b8fb115362fa76f0cb4a7d48d129fe3ef5317b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Ex:5.20
clc;
clear;
close;
y=1.3;// operating wavelength in um
md=2.80;// material dispersion in ns
wd=0.50;// waveguide dispersion in ns
wt=0.60;// width of transmitted pulse in ns
td=sqrt(md^2+wd^2);// total dispersion in ns
dt=wt+td;// received pulse width in ns
br=1/(5*dt*10^-9);// max bit rate bit/sec
Br=br/10^6;// max bit rate in mbps
printf("The received pulse width =%f ns", dt);
printf("\n The  max bit rate =%f mbps", Br);