summaryrefslogtreecommitdiff
path: root/3753/CH5/EX5.1/Ex5_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3753/CH5/EX5.1/Ex5_1.sce')
-rw-r--r--3753/CH5/EX5.1/Ex5_1.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3753/CH5/EX5.1/Ex5_1.sce b/3753/CH5/EX5.1/Ex5_1.sce
new file mode 100644
index 000000000..6bb23718f
--- /dev/null
+++ b/3753/CH5/EX5.1/Ex5_1.sce
@@ -0,0 +1,17 @@
+//Example 5.1, Page number 5.28
+
+clc;clear;close
+
+//variable declaration
+n1=1.50 //Core refractive index
+n2=1.47 //Cladding refractive index
+
+//Calculations
+C_a=asin(n2/n1) //Critical angle
+N_a=(n1**2-n2**2)**(1/2) // Numerical Aperture
+A_a=asin(N_a) // degree
+
+//Results
+printf("The Critical angle = %0.1f degrees",(C_a*180/%pi))
+printf("\nThe numerical aperture = %0.2f",N_a)
+printf("\nThe acceptance angle = %0.1f degress",(A_a*180/%pi))