diff options
Diffstat (limited to '3537/CH7/EX7.12/Ex7_12.sce')
-rw-r--r-- | 3537/CH7/EX7.12/Ex7_12.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3537/CH7/EX7.12/Ex7_12.sce b/3537/CH7/EX7.12/Ex7_12.sce new file mode 100644 index 000000000..5123dfcfc --- /dev/null +++ b/3537/CH7/EX7.12/Ex7_12.sce @@ -0,0 +1,10 @@ +//Example 7_12
+clc();
+clear;
+//To calculate the numerical aperature and acceptance angle
+n1=1.48
+n2=1.45
+NA=sqrt(n1^2-n2^2)
+printf("The numerical aperature is %.4f",NA)
+theta=asin(NA)*180/%pi
+printf("\nThe acceptance angle is %.2f degrees",theta)
|