summaryrefslogtreecommitdiff
path: root/1397/CH8/EX8.6/8_6.sce
blob: d974d5e29fb985700bb304198de52351490cc5a9 (plain)
1
2
3
4
5
6
7
8
9
10
//clc();
clear;
//To calculate numerical aperture and acceptance angle
n1=1.6;        //refractive index of core
n2=1.4;        //refractive index of cladding
n0=1.33;       //water refractive index
NA=sqrt(n1^2-n2^2)/n0;
printf("numerical aperture is %f",NA);
theta0=asind(NA);
printf("acceptance angle is %f degrees",theta0);