summaryrefslogtreecommitdiff
path: root/3753/CH5/EX5.3/Ex5_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3753/CH5/EX5.3/Ex5_3.sce')
-rw-r--r--3753/CH5/EX5.3/Ex5_3.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3753/CH5/EX5.3/Ex5_3.sce b/3753/CH5/EX5.3/Ex5_3.sce
new file mode 100644
index 000000000..213df0c1d
--- /dev/null
+++ b/3753/CH5/EX5.3/Ex5_3.sce
@@ -0,0 +1,17 @@
+//Example 5.3, Page number 5.29
+
+clc;clear;close
+
+// variable declaration
+d=50 // diameter
+n1=1.450// unitless
+n2=1.447// unitless
+lamda=1 // wavelength
+
+// Calculations
+N_a=(n1**2-n2**2) // Numerical aperture
+N=4.9*(((d*10**-6*N_a)/(lamda*10**-6))**2)// Numerical aperture
+
+// Results
+printf("Numerical aperture = %.5f",N_a)
+printf("\nNo. of modes that can be propogated = %.f",N)