diff options
Diffstat (limited to '2183/CH4/EX4.1.c/Ex_4_1_c.sce')
-rwxr-xr-x | 2183/CH4/EX4.1.c/Ex_4_1_c.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2183/CH4/EX4.1.c/Ex_4_1_c.sce b/2183/CH4/EX4.1.c/Ex_4_1_c.sce new file mode 100755 index 000000000..deec11704 --- /dev/null +++ b/2183/CH4/EX4.1.c/Ex_4_1_c.sce @@ -0,0 +1,13 @@ +// Example 4.2.c:Loss for 10Km
+clc;
+clear;
+close;
+L=8;// Length of fiber in km
+Pi=120*10^-6;// input power in Watt
+Po=4*10^-6;//Output power in Watt
+alpha= round(10*(log10(Pi/Po)));//Loss in dB
+alphadb= alpha/L;//Loss in dB/Km
+alphadb2=alphadb*10;// Loss along 10Km fiber length in dB
+Ds=alphadb2+9;// Due to splices at 1km Interval
+disp(Ds,"Atenuation Due to splices at 1km Interval in dB")
+
|