diff options
Diffstat (limited to '2183/CH2/EX2.2.b')
-rwxr-xr-x | 2183/CH2/EX2.2.b/EX_2_2_b.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2183/CH2/EX2.2.b/EX_2_2_b.sce b/2183/CH2/EX2.2.b/EX_2_2_b.sce new file mode 100755 index 000000000..9ae2e8bbb --- /dev/null +++ b/2183/CH2/EX2.2.b/EX_2_2_b.sce @@ -0,0 +1,8 @@ +// Example 2.2.b:Numerical Aperture
+clc;
+clear;
+close;
+n1=1.50;//Waveguide Refractive Index
+n2=1.47;//Cladding Refractive Index
+NA=sqrt(n1^2-n2^2);// Numerical Aperture
+disp(NA,"Numerical Aperture is")
|