blob: a0ddde2079cb2859bc342597bb7a6924178d2162 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;
//page no 762
//prob no. 20.2.4
//refer example 20.2.3
a=2;//gradding profile index
V=69.1;//normalized cutoff freq.
N=2390;//number of modes supported as a step index fiber
//Determination of no. of modes supported by graded index fiber
N_a=(N*a)/(a+2);
disp(N_a,'no. of modes supported by graded index fiber');
|