diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3506/CH16/EX16.5 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3506/CH16/EX16.5')
-rw-r--r-- | 3506/CH16/EX16.5/Ex_16_5.JPG | bin | 0 -> 47155 bytes | |||
-rw-r--r-- | 3506/CH16/EX16.5/Ex_16_5.sce | 22 |
2 files changed, 22 insertions, 0 deletions
diff --git a/3506/CH16/EX16.5/Ex_16_5.JPG b/3506/CH16/EX16.5/Ex_16_5.JPG Binary files differnew file mode 100644 index 000000000..735128530 --- /dev/null +++ b/3506/CH16/EX16.5/Ex_16_5.JPG diff --git a/3506/CH16/EX16.5/Ex_16_5.sce b/3506/CH16/EX16.5/Ex_16_5.sce new file mode 100644 index 000000000..8e5d810f9 --- /dev/null +++ b/3506/CH16/EX16.5/Ex_16_5.sce @@ -0,0 +1,22 @@ +//Optical Fiber communication by A selvarajan
+//example 16.5
+//OS=Windows XP sp3
+//Scilab version 5.5.1
+clc;
+clear all;
+LT=10000//Transmission distance in Km
+alpha=0.2//fiber loss in dB/Km
+lambda=1.55*10^-6;//operating wavelength in m
+Gama=2//nonlinearity in /W-Km
+LA=50//Amplifier spacing in Km
+D=1//dispersion parameter ps/(Km-nm)
+FG=3.518//Fiber gain factor
+fj=0.1//timing jitter factor
+h=6.62607004 * 10-34 //planck's constant in m2 kg / s
+nsp=2//spontaneous emission factor
+qo=6//Half of separation between two neighbouring solitons in normalized units
+B1=((9*%pi*fj^2*LA)/(nsp*FG*qo*lambda*h*Gama*D*10^-3))//variable converting la
+B2=B1^(1/3)//variable
+B=B2/LT//bandwidth in THz
+mprintf('Communication Link bitrate is limited to =%f Gb/s',B*10^3)// Multiplication by 10^3 to convert unit fron THz to GHz
+//the answer is wrong
|