diff options
Diffstat (limited to '3547/CH2/EX2.17/Ex2_17.sce')
-rw-r--r-- | 3547/CH2/EX2.17/Ex2_17.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3547/CH2/EX2.17/Ex2_17.sce b/3547/CH2/EX2.17/Ex2_17.sce new file mode 100644 index 000000000..262b6964c --- /dev/null +++ b/3547/CH2/EX2.17/Ex2_17.sce @@ -0,0 +1,19 @@ +// Example No. 2.17
+// To find the accumulated dispersion of the DCF so that the net accumulated dispersion does not exceed 1100 ps/nm
+// Page no. 85
+
+clc;
+clear;
+
+// Given data
+lambda0=1490; // Zero dispersion wavelength in nm
+lambda=1560; // Upper limit of wavelength range in nm
+Sc=0.08; // Dispersion slope of transmission fiber ps/nm2/km
+LTF=800; // Length of transmission fiber in km
+DTF=Sc*(lambda-lambda0); // Dispersion at 1560 nm in ps/nm/km
+
+// The accumulated dispersion of the DCF
+DLDCF=1100-DTF*LTF; // The accumulated dispersion of the DCF in ps/nm
+
+// Displaying the result in command window
+printf('\n The accumulated dispersion of the DCF should be less than %0.0f ps/nm',DLDCF);
|