summaryrefslogtreecommitdiff
path: root/3834/CH5/EX5.3.6
diff options
context:
space:
mode:
Diffstat (limited to '3834/CH5/EX5.3.6')
-rw-r--r--3834/CH5/EX5.3.6/Ex5_3_6.jpgbin0 -> 216764 bytes
-rw-r--r--3834/CH5/EX5.3.6/Ex5_3_6.sce16
2 files changed, 16 insertions, 0 deletions
diff --git a/3834/CH5/EX5.3.6/Ex5_3_6.jpg b/3834/CH5/EX5.3.6/Ex5_3_6.jpg
new file mode 100644
index 000000000..5bd9fe32f
--- /dev/null
+++ b/3834/CH5/EX5.3.6/Ex5_3_6.jpg
Binary files differ
diff --git a/3834/CH5/EX5.3.6/Ex5_3_6.sce b/3834/CH5/EX5.3.6/Ex5_3_6.sce
new file mode 100644
index 000000000..95400b954
--- /dev/null
+++ b/3834/CH5/EX5.3.6/Ex5_3_6.sce
@@ -0,0 +1,16 @@
+//Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner
+//Windows 8
+//Scilab version- 6.0.0
+//Example 5.3.6
+clc;
+clear;
+//given
+
+Dpmd=0.5;//polarization mode dispersion coefficient in ps/sqrt(km)
+
+L=100;//for assumed fiber length in km
+deltatpmd=Dpmd*sqrt(L);//pulse spread due to PMD in ps
+mprintf("Pulse spread caused by PMD for single mode fiber= %.2f ps",deltatpmd);
+BRpmd=1/(4*deltatpmd);//maximum bit rate limited by PMD in 10^12(bps)
+mprintf("\nBit Rate limited by PMD= %.2f Gbps",BRpmd*1e3);//multiplication by 1e3 to convert unit into Gbps from 10^12(bps)
+