summaryrefslogtreecommitdiff
path: root/3543/CH2/EX2.2
diff options
context:
space:
mode:
Diffstat (limited to '3543/CH2/EX2.2')
-rw-r--r--3543/CH2/EX2.2/EX2_2.pngbin0 -> 37844 bytes
-rw-r--r--3543/CH2/EX2.2/Ex2_2.sce41
2 files changed, 41 insertions, 0 deletions
diff --git a/3543/CH2/EX2.2/EX2_2.png b/3543/CH2/EX2.2/EX2_2.png
new file mode 100644
index 000000000..be9cd2888
--- /dev/null
+++ b/3543/CH2/EX2.2/EX2_2.png
Binary files differ
diff --git a/3543/CH2/EX2.2/Ex2_2.sce b/3543/CH2/EX2.2/Ex2_2.sce
new file mode 100644
index 000000000..7d8e18c4a
--- /dev/null
+++ b/3543/CH2/EX2.2/Ex2_2.sce
@@ -0,0 +1,41 @@
+// Example 2.2
+// Calculation of (a) critical angle (b) acceptance angle and oblique angle (c) numerical aperature
+// (d) percentage of light collected by the fiber and (e) diameter of fiber
+// Page no 35
+
+clc;
+clear;
+close;
+
+// Given data
+n1=1.5; // Refractive index of core
+n2=1.45; // Refractive index of cladding
+V=2.405; // Mode parameter
+lambda=1.55 // Wavelength of fiber
+
+// (a) Critical angle of the
+theatha=asind(n2/n1);
+
+// (b) Oblique angle
+oa=90-theatha;
+ //Acceptance angle
+t1=n1*sind(oa);
+th1=asind(t1);
+
+// (c) Numerical aperature
+NA=sqrt(n1^2-n2^2);
+
+// (d) Percentage of light collected in fiber
+P=(NA)^2*100;
+
+//(e) Diameter of fiber
+d=V*lambda/%pi*(1/sqrt(n1^2-n2^2));
+
+//Display result on command window
+printf("\n Critical angle (degrees) = %0.0f ",theatha);
+printf("\n Oblique angle (degrees) = %0.0f ",oa);
+printf("\n Acceptance angle (degrees) = %0.0f ",th1);
+printf("\n Numerical aperature = %0.4f ",NA);
+printf("\n Percentage of light collected in fiber = %0.1f ",P);
+printf("\n Diameter of fiber (micrometer) = %0.2f ",d);
+