summaryrefslogtreecommitdiff
path: root/2183/CH4/EX4.9.c/Ex_4_9_c.sce
blob: e1a0b0dc8e590cd019dd9bdd9ae730afa8d758f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Example 4.9.c//Bit Rate
clc;
clear;
close;
d=0.01;// Change in refractive index
n1=1.5;//Core refrctive index
L=6*10^3;//Length in meter
C=2.998*10^8;//Speed of light in m/s
dts=round(((L*n1*d)/C)*10^9);//Delay in ns
Bt=(1/(2*dts*10^9))*10^12;//Bit rate in Mbits/sec
Ss=(L*n1*d)/(2*sqrt(3)*C);//Pulse broadning due to intermodal dispersion in ns
Btimp=0.2/Ss;//
disp(Bt,"Bit rate in M bit per seconds")
disp(Btimp*10^-6,"improved estimate of bit rate in M bit per seconds")