diff options
Diffstat (limited to '174/CH14/EX14.1')
-rwxr-xr-x | 174/CH14/EX14.1/example14_1.sce | 29 | ||||
-rwxr-xr-x | 174/CH14/EX14.1/example14_1.txt | 3 |
2 files changed, 32 insertions, 0 deletions
diff --git a/174/CH14/EX14.1/example14_1.sce b/174/CH14/EX14.1/example14_1.sce new file mode 100755 index 000000000..b3c0d817b --- /dev/null +++ b/174/CH14/EX14.1/example14_1.sce @@ -0,0 +1,29 @@ +// To find acceptance angle and numerical aperture
+// Modern Electronic Instrumentation And Measurement Techniques
+// By Albert D. Helfrick, William D. Cooper
+// First Edition Second Impression, 2009
+// Dorling Kindersly Pvt. Ltd. India
+// Example 14-1 in Page 392
+
+
+clear; clc; close;
+
+// Given data
+n_2 = 1.45; //Core index of refraction
+n_1 = 1.47; //Cladding index of refraction
+
+//Calculation
+theta_c = acos(n_2/n_1);
+theta_A = 2*asin(n_1*sin(theta_c));
+NA = sqrt(n_1^2 -n_2^2);
+
+printf("The critical angle of the fiber = %0.2f degree\n",theta_c*180/%pi);
+printf("The acceptance angle of the fiber = %0.2f degree\n",theta_A*180/%pi);
+printf("The numerical aperture of the fiber = %0.3f ",NA);
+
+//Result
+// The critical angle of the fiber = 9.46 degree
+// The acceptance angle of the fiber = 27.97 degree
+// The numerical aperture of the fiber = 0.242
+
+
diff --git a/174/CH14/EX14.1/example14_1.txt b/174/CH14/EX14.1/example14_1.txt new file mode 100755 index 000000000..ddf70cac0 --- /dev/null +++ b/174/CH14/EX14.1/example14_1.txt @@ -0,0 +1,3 @@ +The critical angle of the fiber = 9.46 degree
+The acceptance angle of the fiber = 27.97 degree
+The numerical aperture of the fiber = 0.242
|