summaryrefslogtreecommitdiff
path: root/1979/CH10/EX10.7/Ex10_7.sce
blob: bddf1303c1c78a0125dfb2000e60d215c07139ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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===============================