summaryrefslogtreecommitdiff
path: root/116/CH8/EX8.3/exa8_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '116/CH8/EX8.3/exa8_3.sce')
-rwxr-xr-x116/CH8/EX8.3/exa8_3.sce29
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