summaryrefslogtreecommitdiff
path: root/3834/CH6
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3834/CH6
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3834/CH6')
-rw-r--r--3834/CH6/EX6.2.1/Ex6_2_1.jpgbin0 -> 211543 bytes
-rw-r--r--3834/CH6/EX6.2.1/Ex6_2_1.sce17
-rw-r--r--3834/CH6/EX6.3.1/Ex6_3_1.jpgbin0 -> 98500 bytes
-rw-r--r--3834/CH6/EX6.3.1/Ex6_3_1.sce28
4 files changed, 45 insertions, 0 deletions
diff --git a/3834/CH6/EX6.2.1/Ex6_2_1.jpg b/3834/CH6/EX6.2.1/Ex6_2_1.jpg
new file mode 100644
index 000000000..4c41c31cd
--- /dev/null
+++ b/3834/CH6/EX6.2.1/Ex6_2_1.jpg
Binary files differ
diff --git a/3834/CH6/EX6.2.1/Ex6_2_1.sce b/3834/CH6/EX6.2.1/Ex6_2_1.sce
new file mode 100644
index 000000000..365f1911c
--- /dev/null
+++ b/3834/CH6/EX6.2.1/Ex6_2_1.sce
@@ -0,0 +1,17 @@
+//Fiber-optics communication technology, by Djafer K. Mynbaev and Lowell L. Scheiner
+//Example 6.2.1
+//windows 8
+//Scilab version-6.0.0
+clc;
+clear ;
+//given
+
+a1=12.45E-6;//radius of the cladding for silica fiber
+a=4.15E-6;//radius of the core for silica fiber
+w0=5.15E-6;//in m
+lambda=1600E-9;//wavelength in m
+x=exp(-2*(a1^2/w0^2));
+y=1-x;
+Ploss=-10*log10(y);//power leakage in dB
+
+mprintf("Possible power leakage= %.2f micro-dB",Ploss*1e6);//multiplication by 1e6 to convert unit from dB to micro dB
diff --git a/3834/CH6/EX6.3.1/Ex6_3_1.jpg b/3834/CH6/EX6.3.1/Ex6_3_1.jpg
new file mode 100644
index 000000000..af87e0a72
--- /dev/null
+++ b/3834/CH6/EX6.3.1/Ex6_3_1.jpg
Binary files differ
diff --git a/3834/CH6/EX6.3.1/Ex6_3_1.sce b/3834/CH6/EX6.3.1/Ex6_3_1.sce
new file mode 100644
index 000000000..a7cb489e9
--- /dev/null
+++ b/3834/CH6/EX6.3.1/Ex6_3_1.sce
@@ -0,0 +1,28 @@
+//Fiber-optics communication technology, by Djafer K. Mynbaev and Lowell L. Scheiner
+//Example 6.3.1
+//windows XP
+//Scilab version-5.5.1
+clc;
+clear ;
+//given
+
+L=100E12;//Length of the single-mode fiber link in nm
+
+lambda0=1310;//average of zero-dispersion wavelength in nm
+lambda=1550;//operating wavelength in nm
+S0=0.092;//zero dispersion slope in ps/nm^2
+
+y=lambda0/lambda;
+z=1-y^4;
+Dlambda=(S0/4)*lambda*z;//dispersion coefficient in ps/nm.Km
+
+deltalambda=1;//light source's spectral width in nm
+
+deltatchrom=Dlambda*deltalambda*L;//Pulse spread caused by chromatic dispersion in s
+
+mprintf("Pulse spread caused by chromatic dispersion = %.2f ps",deltatchrom*1E-12);//multiplication by 1e-12 to convert unit from s to ps
+
+x=6.66;//here, x= L/Ldcf assumed to be 6.66
+
+Ddcf=-Dlambda*x;//dispersion in DCF in ps/nm.Km
+mprintf("\nWe need DCF of %.2f ps/nm.km to compensate for dispersion in a conventional SM fiber.",Ddcf);