diff options
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
|