summaryrefslogtreecommitdiff
path: root/2606/CH8/EX8.10
diff options
context:
space:
mode:
Diffstat (limited to '2606/CH8/EX8.10')
-rwxr-xr-x2606/CH8/EX8.10/ex8_10.jpgbin0 -> 12463 bytes
-rwxr-xr-x2606/CH8/EX8.10/ex8_10.sce25
2 files changed, 25 insertions, 0 deletions
diff --git a/2606/CH8/EX8.10/ex8_10.jpg b/2606/CH8/EX8.10/ex8_10.jpg
new file mode 100755
index 000000000..01f6f312f
--- /dev/null
+++ b/2606/CH8/EX8.10/ex8_10.jpg
Binary files differ
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');
+