diff options
Diffstat (limited to '3756/CH4/EX4.3')
-rw-r--r-- | 3756/CH4/EX4.3/Ex4_3.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3756/CH4/EX4.3/Ex4_3.sce b/3756/CH4/EX4.3/Ex4_3.sce new file mode 100644 index 000000000..16ee16778 --- /dev/null +++ b/3756/CH4/EX4.3/Ex4_3.sce @@ -0,0 +1,19 @@ +clc +// +// +// + +//Variable declaration +a=25*10**-6 //core radius +lambdaa=0.85*10**-6 //Wavelength +NA=0.22 //Numerical Aperture + +//Calculations +V=((2*3.14*a*0.22)/lambdaa) +N=((V**2)/4) + +//Result +printf("\n (a) The V number is %2.2f ",V) + +printf("\n (b) The number of modes are %3.2f ",N) + |