diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /848/CH3/EX3.6 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '848/CH3/EX3.6')
-rwxr-xr-x | 848/CH3/EX3.6/Example3_6.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/848/CH3/EX3.6/Example3_6.sce b/848/CH3/EX3.6/Example3_6.sce new file mode 100755 index 000000000..63f1b9b2b --- /dev/null +++ b/848/CH3/EX3.6/Example3_6.sce @@ -0,0 +1,19 @@ +//clear//
+//Caption:Calculation of bandwidth distance
+//Example3.6
+//page 104
+clear;
+clc;
+close;
+n1 = 1.48;//core refractive index
+n2 = 1.465;//claddinig refractive index
+delta = 0.01;//index difference
+C =3*(10^8); //free space velcotiy
+BL = (n2/(n1^2))*(C/delta);
+disp(BL,'Bandwidth distance in bPS-M')
+disp(BL/10^9,'Bandwidth distance in MbPS-KM')
+//Result
+//Bandwidth distance in bPS-M
+// 2.006D+10
+//Bandwidth distance in MbPS-KM
+// 20.064828
|