diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1061/CH10/EX10.5 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1061/CH10/EX10.5')
-rwxr-xr-x | 1061/CH10/EX10.5/Ex10_5.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1061/CH10/EX10.5/Ex10_5.sce b/1061/CH10/EX10.5/Ex10_5.sce new file mode 100755 index 000000000..de89e5a12 --- /dev/null +++ b/1061/CH10/EX10.5/Ex10_5.sce @@ -0,0 +1,20 @@ +//Ex:10.5
+clc;
+clear;
+close;
+Tx=-80;// transmitter output in dBm
+Rx=-40;// receiver sensitivity in dBm
+sm=32;// system margin in dB
+L=10;// in km
+fl=2*L;// fider loss in dB
+cl=1;// detector coupling loss in dB
+tl=0.4*8;// total splicing loss in dB
+ae=5;// angle effects & future splice in dB
+ta=29.2;// total attenuation in dB
+Ep=2.8;// excess power margin in dB
+printf("The fider loss =%f dB", fl);
+printf("\n The total splicing loss =%f dB", tl);
+printf("\n The fangle effects & future splice =%f dB", ae);
+printf("\n The total attenuation =%f dB", ta);
+printf("\n The excess power margin =%f dB", Ep);
+printf("\n hence the system can operate with small excess power margin")
\ No newline at end of file |