diff options
Diffstat (limited to '3547/CH2/EX2.1')
-rw-r--r-- | 3547/CH2/EX2.1/2_1.jpg | bin | 0 -> 59746 bytes | |||
-rw-r--r-- | 3547/CH2/EX2.1/Ex2_1.sce | 28 |
2 files changed, 28 insertions, 0 deletions
diff --git a/3547/CH2/EX2.1/2_1.jpg b/3547/CH2/EX2.1/2_1.jpg Binary files differnew file mode 100644 index 000000000..e39806a4c --- /dev/null +++ b/3547/CH2/EX2.1/2_1.jpg diff --git a/3547/CH2/EX2.1/Ex2_1.sce b/3547/CH2/EX2.1/Ex2_1.sce new file mode 100644 index 000000000..a10602c92 --- /dev/null +++ b/3547/CH2/EX2.1/Ex2_1.sce @@ -0,0 +1,28 @@ +// Example no. 2.1
+// To find a)The numerical aperture b)The acceptanca angle c)The relative index defference
+// Page no. 38
+
+clc;
+clear;
+
+// Given data
+n1=1.47; // Refractive index of core
+n2=1.45; // Refractive index of cladding
+
+// a)The numerical aperture
+NA=(n1^2-n2^2)^(1/2); // Numerical aperture
+
+// Displaying the result in command window
+printf('\n The numerical aperture = %0.4f',NA);
+
+// b)The acceptanca angle
+imax=asin(NA); // The acceptanca angle
+
+// Displaying the result in command window
+printf('\n The acceptanca angle = %0.4f Radian',imax);
+
+// c)The relative index defference
+delta=(n1-n2)/n1; // Relative index defference
+
+// Displaying the result in command window
+printf('\n The relative index defference = %0.4f',delta);
|