blob: bf4188e44ec5d35dc83222ede65a70f7e6aa2df2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Variable Declaration
EIRP=56 //Equivalent Isotropically radiated power(dBW)
BO=6 //Output Backoff(dB)
TFL=2 //Transmitter feeder loss(dB)
GT=50 //Antenna gain(dB)
//Calculation
PTWTA=EIRP-GT+TFL //Power output of TWTA(dBW)
PTWTAS=PTWTA+BO //Saturated power output of TWTA(dBW)
//Result
printf("Power output of the TWTA required for full saturated EIRP is %.f dBW",PTWTAS)
|