diff options
Diffstat (limited to '3669/CH11/EX11.6/6.sce')
-rw-r--r-- | 3669/CH11/EX11.6/6.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3669/CH11/EX11.6/6.sce b/3669/CH11/EX11.6/6.sce new file mode 100644 index 000000000..b31859731 --- /dev/null +++ b/3669/CH11/EX11.6/6.sce @@ -0,0 +1,10 @@ +
+//Variable declaration
+n1=1.55; //refractive index of core
+n2=1.50; //refractive index of cladding
+
+//Calculation
+NA=sqrt((n1**2)-(n2**2)); //numerical aperture
+
+//Result
+printf('numerical aperture is %0.3f \n',(NA))
\ No newline at end of file |