summaryrefslogtreecommitdiff
path: root/1664/CH3/EX3.1/Ex3_1.sce
blob: b0ac62c23f772f21ea0f8ee20c262ee98c6147be (plain)
1
2
3
4
5
6
7
8
9

//Example No. 3.1.
//Page No.98.
//To find numerical aperture.
clc;clear;
n1 = 1.6;//Refractive index of core.
n2 = 1.5;// Refractive index of cladding.
NA = sqroot((n1^(2))-(n2^(2)));//Numerical Aperture.
printf("\nThe numerical aperture of the fibre is %.4f",NA);