summaryrefslogtreecommitdiff
path: root/998/CH29/EX29.11/Ex11.sce
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.11/Ex11.sce
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.11/Ex11.sce')
-rwxr-xr-x998/CH29/EX29.11/Ex11.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/998/CH29/EX29.11/Ex11.sce b/998/CH29/EX29.11/Ex11.sce
new file mode 100755
index 000000000..3570865eb
--- /dev/null
+++ b/998/CH29/EX29.11/Ex11.sce
@@ -0,0 +1,11 @@
+//Ex:11
+clc;
+clear;
+close;
+eirp=21;//Eirp in db
+g_r=50.5;//Receiving antenna gain in db
+y=2.727*10^(-2);//Wavelength in m
+h=4*10^7;//Height in m
+p_l=20*log(4*%pi*h/y)/log(10);//Path loss in db
+p_r=eirp+g_r-p_l;//received power in db
+printf("Received power =%f db",p_r); \ No newline at end of file