summaryrefslogtreecommitdiff
path: root/1619/CH1/EX1.9.8/Example1_9_8.sce
blob: 9929e4a942901bd03167c37e5ee105df96edae61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Example 1.9.8 page 1.26
//To finf relative RI difference..

clc;
clear;

phiA = 8        // accepatance angle in degrees...
n1 =1.52;       //RI of core...

NA = sind(phiA);        //Numerical Aperture...

del = NA^2/(2*(n1^2));      //Relative RI difference...
printf("The relative refractive index difference is %.5f",del);