summaryrefslogtreecommitdiff
path: root/2409/CH12/EX12.10/Ex12_10.sce
blob: fe7aaffde87679c9baa1f5149dc654b8f914f48c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

//Variable Declaration
f=14        //Frequency(GHz)
Ps=-120     //Flux density required to saturate the transponder(dBW/m2)
LOSSES=2    //Propogation Losses(dB)
FSL=207     //Free-space loss(dB)

//Calculation

A0=-21.45-20*log10(f)   //Effective antenna aperture(dB)
EIRP=Ps+A0+LOSSES+FSL //Equivalent isotropically radiated power(dB)

//Result
printf("The earth station EIRP required for saturation is %.2f dBW",EIRP)