summaryrefslogtreecommitdiff
path: root/1655/CH2/EX2.7.12/Example_2_7_12.sce
blob: 158bf138cb3ae32b24af77f893ef1d93fdc22bca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Example 2.7.12  page 2.30

clc;
clear;

n1=1.48;       //refractive index of core
n2=1.478;       //refractive index of cladding
lamda=820d-9;       //Wavelength

NA=sqrt(n1^2 - n2^2);       //computing Numerical aperture
theta= asind(NA);        //computing acceptance angle
solid_angle=%pi*(NA)^2;     //computing solid angle

printf("\nNumerical aperture is %.3f.\nAcceptance angle is %.2f degrees.\nSolid angle is %.4f radians.",NA,theta,solid_angle);