summaryrefslogtreecommitdiff
path: root/374/CH1/EX1.2/12.sci
diff options
context:
space:
mode:
Diffstat (limited to '374/CH1/EX1.2/12.sci')
-rw-r--r--374/CH1/EX1.2/12.sci11
1 files changed, 11 insertions, 0 deletions
diff --git a/374/CH1/EX1.2/12.sci b/374/CH1/EX1.2/12.sci
new file mode 100644
index 000000000..e954ebb52
--- /dev/null
+++ b/374/CH1/EX1.2/12.sci
@@ -0,0 +1,11 @@
+//Chapter 1 Example2//
+//refractive index of air=na,acceptance angle=a,numerical aperture=NA//
+clc;
+clear;
+NA=0.3;
+a=asind(NA);
+printf("\n a) acceptance angle=%f\n",a);
+//direction of screw rays=s,acceptance angle of screw rays=as//
+s=45;
+as=(asind(NA))/(cosd(s));
+printf("\n b) acceptance angle of screw rays=%f\n",as);