diff options
Diffstat (limited to '3822/CH3/EX3.6')
-rw-r--r-- | 3822/CH3/EX3.6/Ex3_6.jpg | bin | 0 -> 163767 bytes | |||
-rw-r--r-- | 3822/CH3/EX3.6/Ex3_6.sce | 24 |
2 files changed, 24 insertions, 0 deletions
diff --git a/3822/CH3/EX3.6/Ex3_6.jpg b/3822/CH3/EX3.6/Ex3_6.jpg Binary files differnew file mode 100644 index 000000000..77fa6443c --- /dev/null +++ b/3822/CH3/EX3.6/Ex3_6.jpg diff --git a/3822/CH3/EX3.6/Ex3_6.sce b/3822/CH3/EX3.6/Ex3_6.sce new file mode 100644 index 000000000..414a778dc --- /dev/null +++ b/3822/CH3/EX3.6/Ex3_6.sce @@ -0,0 +1,24 @@ + + +//Optoelectronics and Fiber Optics Communication by C.R. Sarkar and D.C. Sarkar
+//Example 3.6
+//OS = Windows 7
+//Scilab version 5.5.2
+
+clc;
+clear;
+
+//given
+
+n1=1.55;//refractive index of core
+n2=1.51//refractive index of cladding
+no=1//refractive index of air
+C=3e8//velocity of light in m/s
+deltan=n1-n2;//relative refractive index
+NA=((n1+n2)*deltan)^0.5;//Numerical aperture
+alpham=asind(NA)//acceptance angle in degrees
+deltatbyZ=(n1/n2)*deltan/C//multiple time dispersionin s/m
+mprintf("Numerical Aperture is=%.2f",NA);
+mprintf("\nAcceptance angle is=%.2f degree",alpham)
+mprintf("\nMultiple time dispersion is=%.2f ns/Km",deltatbyZ*1e12)//multiplication by 1e12 to convert unit from s/m to ns/Km
+//the answer vary slightly due to rounding
|