diff options
Diffstat (limited to '3537/CH7/EX7.18')
-rw-r--r-- | 3537/CH7/EX7.18/Ex7_18.sce | 11 | ||||
-rw-r--r-- | 3537/CH7/EX7.18/Ex7_18.txt | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/3537/CH7/EX7.18/Ex7_18.sce b/3537/CH7/EX7.18/Ex7_18.sce new file mode 100644 index 000000000..983afd8b5 --- /dev/null +++ b/3537/CH7/EX7.18/Ex7_18.sce @@ -0,0 +1,11 @@ +//Example 7_18
+clc();
+clear;
+//To find the numerical aperature and acceptance angle
+n1=1.6
+n2=1.4
+n0=1.33
+NA=sqrt(n1^2-n2^2)/n0
+printf("The numerical aperature is %.3f",NA)
+theta=asin(NA)*180/%pi
+printf("\nThe acceptance angle is %.2f degrees",theta)
diff --git a/3537/CH7/EX7.18/Ex7_18.txt b/3537/CH7/EX7.18/Ex7_18.txt new file mode 100644 index 000000000..83b0b982a --- /dev/null +++ b/3537/CH7/EX7.18/Ex7_18.txt @@ -0,0 +1,2 @@ +The numerical aperature is 0.582
+The acceptance angle is 35.62 degrees
\ No newline at end of file |