diff options
Diffstat (limited to '3537/CH7/EX7.3/Ex7_3.sce')
-rw-r--r-- | 3537/CH7/EX7.3/Ex7_3.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3537/CH7/EX7.3/Ex7_3.sce b/3537/CH7/EX7.3/Ex7_3.sce new file mode 100644 index 000000000..fadf75396 --- /dev/null +++ b/3537/CH7/EX7.3/Ex7_3.sce @@ -0,0 +1,9 @@ +//Example 7_3
+clc();
+clear;
+//To compare the acceptance angle
+NA=0.3
+thetaa=asin(NA)*180/%pi //units in degrees
+theta1=asin(NA/sin(45*%pi/180))*180/%pi //units in degrees
+printf("for meridional rays theta=%.2f degrees",thetaa)
+printf("\n for skew rays theta=%.2f degrees",theta1)
|