summaryrefslogtreecommitdiff
path: root/374/CH1/EX1.2/12.sci
blob: e954ebb5243d7d396c1566156b57572016548d18 (plain)
1
2
3
4
5
6
7
8
9
10
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);