diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /116/CH8/EX8.3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '116/CH8/EX8.3')
-rwxr-xr-x | 116/CH8/EX8.3/exa8_3.sce | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/116/CH8/EX8.3/exa8_3.sce b/116/CH8/EX8.3/exa8_3.sce new file mode 100755 index 000000000..871086e69 --- /dev/null +++ b/116/CH8/EX8.3/exa8_3.sce @@ -0,0 +1,29 @@ +
+//Caption:Program to determine the BDP of SMF system and DS SMF system using DFB LD
+
+//Example 8.3
+
+//Page 393
+
+//Refer to table 8.1 on page 392, also to figure 8.6 on page 391
+
+smf=16
+
+smf=16//dispersion co-efficient of SMF at 1550nm
+
+sw=0.4//spectral width of the source
+
+BDP=[250/(smf*sw)]//assuming line code as NRZ
+
+disp('The BDP of the DS SMF system is determined as')
+
+smf=3.5//dispersion co-efficient of DS SMF at 1550nm
+
+BDP=[250/(smf*sw)]//assuming line code as NRZ
+
+//Result
+
+//BDP = 39 Gbps=km (SMF)
+
+//BDP = 179 Gbps-km (DS SMF)
+
\ No newline at end of file |