diff options
Diffstat (limited to '3834/CH5/EX5.3.2')
-rw-r--r-- | 3834/CH5/EX5.3.2/Ex5_3_2.jpg | bin | 0 -> 217683 bytes | |||
-rw-r--r-- | 3834/CH5/EX5.3.2/Ex5_3_2.sce | 18 |
2 files changed, 18 insertions, 0 deletions
diff --git a/3834/CH5/EX5.3.2/Ex5_3_2.jpg b/3834/CH5/EX5.3.2/Ex5_3_2.jpg Binary files differnew file mode 100644 index 000000000..55116ccf3 --- /dev/null +++ b/3834/CH5/EX5.3.2/Ex5_3_2.jpg diff --git a/3834/CH5/EX5.3.2/Ex5_3_2.sce b/3834/CH5/EX5.3.2/Ex5_3_2.sce new file mode 100644 index 000000000..d54ccf725 --- /dev/null +++ b/3834/CH5/EX5.3.2/Ex5_3_2.sce @@ -0,0 +1,18 @@ +//Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner
+//Windows 8
+//Scilab version- 6.0.0
+//Example 5.3.2
+clc;
+clear ;
+//given
+lambda=1550;//operating wavelength in nm
+deltalambda=1;//wavelength in nm
+L=1;//length of fiber in km
+Dmatlambda=20;//material dispersion in ps/nm.km
+Dwglambda=5;//waveguide dispersion in ps/nm.km
+
+deltatmat=Dmatlambda*deltalambda*L;//Pulse spreading caused by material dispersion in ps
+deltatwg=Dwglambda*deltalambda*L;//Pulse spreading caused by waveguide dispersion in ps
+
+mprintf("Pulse spread caused by material dispersion=%.0f ps",deltatmat);
+mprintf("\nPulse spread caused by waveguide dispersion=%.0f ps",deltatwg);
|