diff options
Diffstat (limited to '3834/CH12/EX12.3.4/Ex12_3_4.sce')
-rw-r--r-- | 3834/CH12/EX12.3.4/Ex12_3_4.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3834/CH12/EX12.3.4/Ex12_3_4.sce b/3834/CH12/EX12.3.4/Ex12_3_4.sce new file mode 100644 index 000000000..89fe16692 --- /dev/null +++ b/3834/CH12/EX12.3.4/Ex12_3_4.sce @@ -0,0 +1,20 @@ +//Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner
+//Windows 8
+//Scilab version- 6.0.0
+//Example 12.3.4
+clc;
+clear ;
+//given
+
+Pis=300E-6;//input-signal power in W
+Pin=30E-9;//input noise power in w
+B=1E-9;//Bandwidth in m
+Pos=60E-3;//output signal power in W
+Pon=20E-6;// output noise power in W
+
+SNRin=Pis/Pin;
+SNRout=Pos/Pon;
+
+Fn=SNRin/SNRout;
+
+mprintf("Noise figure of an optical amplifier = %.2f or %.1fdB",Fn,10*log10(Fn));
|