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 /998/CH29/EX29.44 | |
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 '998/CH29/EX29.44')
-rwxr-xr-x | 998/CH29/EX29.44/Ex44.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/998/CH29/EX29.44/Ex44.sce b/998/CH29/EX29.44/Ex44.sce new file mode 100755 index 000000000..d83be1803 --- /dev/null +++ b/998/CH29/EX29.44/Ex44.sce @@ -0,0 +1,15 @@ +//Ex:44
+clc;
+clear;
+close;
+p_t=10*log(2)/log(10);// transmit power in dbW
+g_t=42;// Gain of the VSAT transmit antenna in db
+g_r=30;//Gain of the satellite receive antenna in db
+l_p=207;//Free space path loss at 14HGz
+l_b=2;//Beam loss in db
+l_a=0.5;//atmospheric loss in db
+l_l=0.5;//miscellaneous loss in db
+l_o=l_b+l_a+l_l;// other losses in db
+p_r=p_t+g_t+g_r-l_p-l_o;//the power received in dbW
+P_r=floor(p_r);
+printf("The power received=%f dbW",P_r);
\ No newline at end of file |