blob: e6f0a704861f5319a4b84b9d9e9b17ae4bb03d2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//chapter 11 example 1//
clc
clear
//material dispersion delay=dtmax,value of parameter=p,length of link-L,spectral width=d,speed of light=c,wavelength=l//
L=1.25*(10^3);//in mts//
c=3*(10^8);//speed of light//
dl=45;//in nm//
p=0.023;
l=850;//in nm//
dtmax=(L*dl*p)/(c*l)*(10^9);
printf("\n material dispersion delay=%f ns\n",dtmax)
|