blob: c55b2a328130432fb6cb799a8c2f4b8ca4809ff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc;
clear;
d=60 // diameter in micrometer
n1=1.48 //core refractive index
n2=1.41 //cladding refractive index
lambda=0.8 //wavelength of light source in micrometer
//calculation
NA=sqrt(n1^2-n2^2) //numerical aperture
V=(%pi*d*NA)/lambda //normalized frequency in cycles/sample
M=V^2/2
mprintf("The no of modes propogating in the fibre are %e",M)
//The answer provided in the textbook is wrong.
|