summaryrefslogtreecommitdiff
path: root/116/CH8/EX8.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /116/CH8/EX8.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '116/CH8/EX8.1')
-rwxr-xr-x116/CH8/EX8.1/exa8_1.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/116/CH8/EX8.1/exa8_1.sce b/116/CH8/EX8.1/exa8_1.sce
new file mode 100755
index 000000000..89f07d16f
--- /dev/null
+++ b/116/CH8/EX8.1/exa8_1.sce
@@ -0,0 +1,27 @@
+
+//Caption:Program to determine the loss limit and the multimode dispersion limit of a graded index FOC
+
+//Example 8.1
+
+//Page 388
+
+//Refer to figure 8.2 on page 385
+
+Pin=42//input power = 42dB
+
+disp('The attenuation of a multimode fiber operating at 820nm is approximately 3db/km. Thus,')
+
+A=3//attenuation
+
+LL=(Pin/A)//Loss Limit
+
+disp('Using 2 Gbps-km as typical BDP of graded index multimode fiber, the multimode dispersion distance is determined as')
+
+Dl=(2000/90)//Dispersion limit
+
+//Result
+
+//Loss Limit = 14 km
+
+//Dispersion Limit = 22.2 km
+ \ No newline at end of file