summaryrefslogtreecommitdiff
path: root/998/CH29/EX29.12
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /998/CH29/EX29.12
downloadScilab-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.12')
-rwxr-xr-x998/CH29/EX29.12/Ex12.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/998/CH29/EX29.12/Ex12.sce b/998/CH29/EX29.12/Ex12.sce
new file mode 100755
index 000000000..378227a1f
--- /dev/null
+++ b/998/CH29/EX29.12/Ex12.sce
@@ -0,0 +1,14 @@
+//Ex:12
+clc;
+clear;
+close;
+p_t=13;//Tranponder output power in db w
+b_t=1;//Transponder output backoff in db
+g_t=30;//satellite antenna gain in db
+g_r=59.2;//Earth station antenna gain in db
+l_fs=195;//Free space loss in db
+l_a=-2;//Edge of beam loss in db
+l_air=0.2;//Air atmospheric loss in db
+l_o=0.4;//Other losses in db
+p_r=p_t+g_t+g_r-b_t-l_fs-l_a-l_air-l_o;//Received power in db w
+printf("received power=%f db watt",p_r); \ No newline at end of file