diff options
Diffstat (limited to '2606/CH8/EX8.13')
-rwxr-xr-x | 2606/CH8/EX8.13/ex8_13.jpg | bin | 0 -> 12442 bytes | |||
-rwxr-xr-x | 2606/CH8/EX8.13/ex8_13.sce | 33 |
2 files changed, 33 insertions, 0 deletions
diff --git a/2606/CH8/EX8.13/ex8_13.jpg b/2606/CH8/EX8.13/ex8_13.jpg Binary files differnew file mode 100755 index 000000000..d53a0302b --- /dev/null +++ b/2606/CH8/EX8.13/ex8_13.jpg diff --git a/2606/CH8/EX8.13/ex8_13.sce b/2606/CH8/EX8.13/ex8_13.sce new file mode 100755 index 000000000..e5d2447a2 --- /dev/null +++ b/2606/CH8/EX8.13/ex8_13.sce @@ -0,0 +1,33 @@ +//Page Number: 8.14
+//Example 8.13
+clc;
+//Given
+Pni=-100; //dBm
+PniW=((1D-3)*(10^(Pni/10)));
+
+To=290; //K
+
+F=1.6; //dB
+NF=(10^(F/10));
+
+//(a) Noise tempertaure of antenna
+//As Te=Pni/K*B;
+K=1.38D-23;
+B=20D+6;
+Te=(PniW/(K*B));
+disp('K',Te,'Noise tempertaure of antenna');
+
+//(b)Effective noise tempertaure
+//Given,
+G=30; //dB
+GdB=(10^(G/10));
+
+Tef=((NF-1)*To);
+disp('K',Tef,'Effective Noise tempertaure');
+
+//Output Noise Pno=K*T(Te+Tef)*B*GdB
+
+Pno=K*(Te+Tef)*B*GdB; //W
+Pno1=(10*(log10(Pno/1D-3)));
+disp('dBm',Pno1,'Output Noise: ');
+
|