diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3638/CH17/EX17.7 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3638/CH17/EX17.7')
-rw-r--r-- | 3638/CH17/EX17.7/Ex17_7.jpg | bin | 0 -> 75516 bytes | |||
-rw-r--r-- | 3638/CH17/EX17.7/Ex17_7.sce | 27 |
2 files changed, 27 insertions, 0 deletions
diff --git a/3638/CH17/EX17.7/Ex17_7.jpg b/3638/CH17/EX17.7/Ex17_7.jpg Binary files differnew file mode 100644 index 000000000..815d00906 --- /dev/null +++ b/3638/CH17/EX17.7/Ex17_7.jpg diff --git a/3638/CH17/EX17.7/Ex17_7.sce b/3638/CH17/EX17.7/Ex17_7.sce new file mode 100644 index 000000000..7ce8f9574 --- /dev/null +++ b/3638/CH17/EX17.7/Ex17_7.sce @@ -0,0 +1,27 @@ +//Introduction to Fiber Optics by A. Ghatak and K. Thyagarajan, Cambridge, New Delhi, 1999
+//Example 17.7
+//OS=Windows XP sp3
+//Scilab version 5.5.2
+clc;
+clear;
+//given
+//Since the peak reflectivity of fiber is 0.93%,
+R=0.93;//Reflection coefficient of fiber
+L=4.8e-3;//Length of fiber in m
+lambdaB=1532.1e-9;//Bragg wavelength in m
+neff=1.4517;//Corresponding value of effective index in LP01 mode
+I=0.5;//Transverse overlap integral of modal distribution
+
+//Now, (tanh(k*L))^2=R
+//Rearranging terms, we get:
+k=atanh(sqrt(R))/L;//Corresponding coupling coefficient in m^(-1)
+mprintf("\n k=%.3f mm^(-1)",k/1e3);//Dividing by 10^3 to convert into mm^(-1)
+//The answers vary due to round off error
+
+//Rearranging terms of expression k=%pi*Deltan*I/lambdaB
+Deltaneff=k*lambdaB/(%pi);//Change in effective refractive index
+mprintf("\n Deltaneff=%.2e",Deltaneff);//Unitless quantity
+//The answers vary due to round off error
+
+DeltaLambda=lambdaB^2/(%pi*neff*L)*sqrt((k*L)^2+(%pi)^2);//Corresponding bandwidth in m
+mprintf("\n DeltaLambda=%.2f nm",DeltaLambda/1e-9);//Division by 10^(-9) to convert into nm
|