diff options
Diffstat (limited to '3834/CH5/EX5.2.1')
-rw-r--r-- | 3834/CH5/EX5.2.1/Ex5_2_1.jpg | bin | 0 -> 209667 bytes | |||
-rw-r--r-- | 3834/CH5/EX5.2.1/Ex5_2_1.sce | 17 |
2 files changed, 17 insertions, 0 deletions
diff --git a/3834/CH5/EX5.2.1/Ex5_2_1.jpg b/3834/CH5/EX5.2.1/Ex5_2_1.jpg Binary files differnew file mode 100644 index 000000000..28caf272d --- /dev/null +++ b/3834/CH5/EX5.2.1/Ex5_2_1.jpg diff --git a/3834/CH5/EX5.2.1/Ex5_2_1.sce b/3834/CH5/EX5.2.1/Ex5_2_1.sce new file mode 100644 index 000000000..38606322b --- /dev/null +++ b/3834/CH5/EX5.2.1/Ex5_2_1.sce @@ -0,0 +1,17 @@ +//Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner
+//Windows 8
+//Scilab version- 6.0.0
+//Example 5.2.1
+clc;
+clear;
+//given
+
+A=0.2;//Attenuation in dB/km
+Pin=0.029E-3; //Power launched in mW
+Pout=0.001E-3; //Receiver sensitivity in mW
+e=Pin/Pout;
+s=10/A;
+d=log10(e);
+L=s*d;//maximum transistion distance in km
+
+mprintf("Maximum transistion distance = %.2f Km",L);
|