summaryrefslogtreecommitdiff
path: root/3834/CH3/EX3.3.5/Ex3_3_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3834/CH3/EX3.3.5/Ex3_3_5.sce')
-rw-r--r--3834/CH3/EX3.3.5/Ex3_3_5.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3834/CH3/EX3.3.5/Ex3_3_5.sce b/3834/CH3/EX3.3.5/Ex3_3_5.sce
new file mode 100644
index 000000000..b8caec59a
--- /dev/null
+++ b/3834/CH3/EX3.3.5/Ex3_3_5.sce
@@ -0,0 +1,19 @@
+//Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner
+//Windows 7
+//Scilab version- 6.0.0
+//Example 3.3.5
+clc;
+clear;
+//given
+
+S0=0.097;//zero dispersion slope in ps/(nm^2.km)
+lambda0=1343E-9; //zero dispersion wavelength in m
+lambda=1300E-9;//operating wavelength in m
+
+b=lambda0*lambda0*lambda0*lambda0;
+c=lambda*lambda*lambda;
+x=b/c;
+e=lambda-x;
+g=S0/4;
+Dlambda=g*e*1E9;//Chromatic dispersion in ps/(nm.Km)
+mprintf("\n Chromatic dispersion =%.2f ps/(nm.Km)",Dlambda);