blob: ebce9be00671d76ce84008b911d0121b529377f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Example 11.1
// Calculation of the minimum number of taps needed to compensate for the fiber dispersion
// Page no 509
clc;
clear;
close;
// Given data
b=22*10^-27; // Power launched in port 1
l=800*10^3; // Power launched in port 2
T=50*10^-12; // Power launched in port 3
// Bit rate of communication system
k=ceil((%pi*b*l)/T^2);
n=(2*k)+1;
// Displaying results in the command window
printf("\n The number of the taps = %0.3f ",n);
// The answers vary due to round off error
|