diff options
Diffstat (limited to '3834/CH10/EX10.4.1')
-rw-r--r-- | 3834/CH10/EX10.4.1/Ex10_4_1.jpg | bin | 0 -> 214767 bytes | |||
-rw-r--r-- | 3834/CH10/EX10.4.1/Ex10_4_1.sce | 23 |
2 files changed, 23 insertions, 0 deletions
diff --git a/3834/CH10/EX10.4.1/Ex10_4_1.jpg b/3834/CH10/EX10.4.1/Ex10_4_1.jpg Binary files differnew file mode 100644 index 000000000..1baee8161 --- /dev/null +++ b/3834/CH10/EX10.4.1/Ex10_4_1.jpg diff --git a/3834/CH10/EX10.4.1/Ex10_4_1.sce b/3834/CH10/EX10.4.1/Ex10_4_1.sce new file mode 100644 index 000000000..2b2f44718 --- /dev/null +++ b/3834/CH10/EX10.4.1/Ex10_4_1.sce @@ -0,0 +1,23 @@ +//Fiber-optics communication technology, by Djafer K. Mynbaev and Lowell L. Scheiner
+//Example 10.4.1
+//windows 7
+//Scilab version-6.0.0
+clc;
+clear ;
+//given
+
+//case 1
+R=0.035;//Reflectivity for the air-silica interface
+NAt=0.275;//Typical Numerical Aperture in a GI multimode fiber
+D=1;//Ratio of the diameter of the fiber core to the diameter of the source
+X=2*(D^2);
+Y=1-1/X;
+ETAcgi=(NAt^2)*Y;//The amount of light coupling in a GI multimode fiber
+
+mprintf("The amount of light coupling in a GI multimode fiber is = %.3f",ETAcgi);
+
+//case 2
+NAt2=0.13;//Typical Numerical Aperture in a SI singlemode fiber
+EATcsi=NAt2^2;//The amount of light coupling in a SI singlemode fiber
+mprintf("\nThe amount of light coupling in a SI singlemode fiber is = %.3f",EATcsi);
+//the answers vary due to rounding
|