summaryrefslogtreecommitdiff
path: root/3543/CH2/EX2.013
diff options
context:
space:
mode:
Diffstat (limited to '3543/CH2/EX2.013')
-rw-r--r--3543/CH2/EX2.013/EX2_13.pngbin0 -> 39218 bytes
-rw-r--r--3543/CH2/EX2.013/Ex2_13.sce31
2 files changed, 31 insertions, 0 deletions
diff --git a/3543/CH2/EX2.013/EX2_13.png b/3543/CH2/EX2.013/EX2_13.png
new file mode 100644
index 000000000..ce0f8dd01
--- /dev/null
+++ b/3543/CH2/EX2.013/EX2_13.png
Binary files differ
diff --git a/3543/CH2/EX2.013/Ex2_13.sce b/3543/CH2/EX2.013/Ex2_13.sce
new file mode 100644
index 000000000..f620ab843
--- /dev/null
+++ b/3543/CH2/EX2.013/Ex2_13.sce
@@ -0,0 +1,31 @@
+// Example 2.13
+// Calculation of (a) core radius and (b) maximum value of angle of acceptance of the fiber
+// Page no 483
+
+clc;
+clear;
+close;
+
+//Given data
+lambda=1320*10^-9; // Wavelength of fiber
+delta=0.077; // Relative refractive index
+n1=1.48; // Refractive index of core
+n2=1.478; // Refractive index of cladding
+v=2.403; // Normalized frequency
+
+// (a) Core radius
+a=v*lambda/(2*%pi*delta);
+a=a*10^6;
+
+//Numerical Aperture
+NA=sqrt(n1^2-n2^2);
+
+// (b) Angle of acceptance
+theata = asind(NA);
+
+//Display result on command window
+printf("\n Radius of core (in micrometer) = %0.1f ",a);
+printf("\n Numerical aperture = %0.5f ",NA);
+printf("\n Angle of acceptance (degrees) = %0.0f ",theata);
+
+// The answers vary due to round off error