diff options
Diffstat (limited to '3834/CH5/EX5.1.1/Ex5_1_1.sce')
-rw-r--r-- | 3834/CH5/EX5.1.1/Ex5_1_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3834/CH5/EX5.1.1/Ex5_1_1.sce b/3834/CH5/EX5.1.1/Ex5_1_1.sce new file mode 100644 index 000000000..1cdb285d4 --- /dev/null +++ b/3834/CH5/EX5.1.1/Ex5_1_1.sce @@ -0,0 +1,17 @@ +//Fiber-optics communication technology, by Djafer K. Mynbaev and Lowell L. Scheiner
+//Example 5.1.1
+//windows XP
+//Scilab version-5.5.1
+clc;
+clear;
+//given
+
+n1=1.4675;//Refractive index of the core for silica fiber
+n2=1.4622;//Refractive index of the cladding for silica fiber
+
+x=n1*n1;
+y=n2*n2;
+
+NA=sqrt(x-y);
+
+mprintf("Numerical aperture of singlemode fiber =%.3f",NA);
|