From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2606/CH8/EX8.10/ex8_10.sce | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 2606/CH8/EX8.10/ex8_10.sce (limited to '2606/CH8/EX8.10/ex8_10.sce') 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'); + -- cgit