diff options
Diffstat (limited to '1979/CH10/EX10.7')
-rwxr-xr-x | 1979/CH10/EX10.7/Ex10_7.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1979/CH10/EX10.7/Ex10_7.sce b/1979/CH10/EX10.7/Ex10_7.sce new file mode 100755 index 000000000..bddf1303c --- /dev/null +++ b/1979/CH10/EX10.7/Ex10_7.sce @@ -0,0 +1,18 @@ +//chapter-10 page 488 example 10.7
+//==============================================================================
+clc;
+clear;
+
+Tant=25;//effective noise temperature in K
+Tr=75;//receiver noise temperature in K
+GdB=45;//Isotropic power gain of the antenna in dB
+
+//CALCULATION
+T=Tant+Tr;//The total noise in K
+TdB=10*log10(T);//The total noise in dB
+MdB=GdB-TdB;//Figure of merit of earth station in dB
+
+//OUTPUT
+mprintf('\nFigure of merit of earth station is MdB=%2.0f dB',MdB);
+
+//=========================END OF PROGRAM===============================
|