blob: 17690bed7501a92aeb7d337506b6d48cff7e4cd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner
//Windows 8
//Scilab version- 6.0.0
//Example 5.3.3
clc;
clear;
//given
lambda=1550;//operating wavelength in nm
L=1;//Length of fiber in km
deltalambda=1;//spectral width wavelength in nm
Dlambda=15;//given chromatic dispersion parameter in ps/nm.km
deltatchrom=Dlambda*deltalambda*L;//Pulse spreading due to chromatic dispersion in ps
mprintf("\nChromatic dispersion in single mode fiber = %.2f ps",deltatchrom);
|