diff options
Diffstat (limited to '3506/CH16/EX16.2/Ex_16_2.sce')
-rw-r--r-- | 3506/CH16/EX16.2/Ex_16_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3506/CH16/EX16.2/Ex_16_2.sce b/3506/CH16/EX16.2/Ex_16_2.sce new file mode 100644 index 000000000..553c953dc --- /dev/null +++ b/3506/CH16/EX16.2/Ex_16_2.sce @@ -0,0 +1,13 @@ +//Optical Fiber communication by A selvarajan
+//example 16.2
+//OS=Windows XP sp3
+//Scilab version 5.5.1
+clc;
+clear all;
+lambda=1.55;//operating wavelength in um
+Beta2=-1//dispersion regime ps^2/Km
+B=10//bitrate in Gb/s
+two_qo=12//separation between two neighbouring solitons in normalized units
+LT=%pi*exp(two_qo/2)/(8*(two_qo/2)^2*abs(Beta2)*10^-24)/(B^2*(10^18))//distance transmission limit in Km
+mprintf('For 10Gb/s bit rate , transmission distance is limited to =%f Km',LT)//the answer is different because of rounding off
+
|