blob: 957e0e6042d91723126609dd303e16c58b5b6a92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Variable Declaration
B=36 //Transponder Bandwidth(MHz)
CNR=22 //Carrier to noise ratio(dB)
LOSSES=200 //Total transmission losses(dB)
GTR=31 //Earth station G/T (dB/K)
k=-228.6 //Value of k(dB)
//Calculation
B=10*log10(B*10**6) //Converting Bandwidth to dB
EIRP=CNR-GTR+LOSSES+k+B //Equivalent isotropically radiated power(dB)
//Result
printf("Satellite EIRP required is %.0f dB",EIRP)
|