summaryrefslogtreecommitdiff
path: root/2606/CH8/EX8.10/ex8_10.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2606/CH8/EX8.10/ex8_10.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 '2606/CH8/EX8.10/ex8_10.sce')
-rwxr-xr-x2606/CH8/EX8.10/ex8_10.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/2606/CH8/EX8.10/ex8_10.sce b/2606/CH8/EX8.10/ex8_10.sce
new file mode 100755
index 000000000..9140b92b4
--- /dev/null
+++ b/2606/CH8/EX8.10/ex8_10.sce
@@ -0,0 +1,25 @@
+//Page Number: 8.12
+//Example 8.10
+clc;
+
+
+//Given
+K=1.38D-23;
+B=40D+6;
+
+Tant=600; //Kelvin
+Trec=3000; //Kelvin
+
+G=80; //dB
+GG=(10^(G/10));
+
+//Input noise power from antenna
+Nant=K*Tant*B; //W
+disp('W',Nant,'Nant=');
+
+Nrec=K*Trec*B; //W
+disp('W',Nrec,'Nant=');
+
+Nout=(Nant+Nrec)*GG;
+disp('W',Nout,'Reciver Noise Power Output');
+