summaryrefslogtreecommitdiff
path: root/1271/CH5/EX5.11
diff options
context:
space:
mode:
Diffstat (limited to '1271/CH5/EX5.11')
-rwxr-xr-x1271/CH5/EX5.11/11.txt1
-rwxr-xr-x1271/CH5/EX5.11/example5_11.sce11
2 files changed, 12 insertions, 0 deletions
diff --git a/1271/CH5/EX5.11/11.txt b/1271/CH5/EX5.11/11.txt
new file mode 100755
index 000000000..7aa82f219
--- /dev/null
+++ b/1271/CH5/EX5.11/11.txt
@@ -0,0 +1 @@
+Maximum diameter of core = 1.020804e-05 meter \ No newline at end of file
diff --git a/1271/CH5/EX5.11/example5_11.sce b/1271/CH5/EX5.11/example5_11.sce
new file mode 100755
index 000000000..a3168cd32
--- /dev/null
+++ b/1271/CH5/EX5.11/example5_11.sce
@@ -0,0 +1,11 @@
+clc
+// Given that
+lambda = 1.25e-6 //wavelength of light in meter
+mu1 = 1.46 // refractive index for core
+mu2 = 1.457 // refractive index for cladding
+// Sample Problem 11 on page no. 5.20
+printf("\n # PROBLEM 11 # \n")
+NA = sqrt(mu1^2 - mu2^2)//calculation for numerical aperture
+k = (2.4 * lambda) / ( %pi * NA)
+printf("\n Standard formula used \n d<8*lambda/(pi*NA)\n")
+printf("\n Maximum diameter of core = %f micro meter",k*1e6)