blob: 81546bf410ef7586e24917933009afaca1d6c857 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Example 2.20:Normaised Frequency
clc;
clear;
close;
n1=1.45;//Core Refractive Index
NA=0.16;//Numerical Aperture
a=30;// core radius in micro meters
h=0.1;//wavelngth in micro meters
v=(2*%pi*a*NA)/h;//Normalised wavelngth
disp(v,"normalised frequency ")
|