blob: a6eb51a74e7a551bd6ea904aac09697a80e8a709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Variable Declaration
EIRP=25 //Satellite saturation value(dBW)
BO=6 //Output Backoff loss(dB)
FSL=196 //Free space loss(dB)
DL=1.5 //Downlink losses(dB)
GTR=41 //Earth station G/T(dB/K)
k=-228.6 //Value of k(dB)
//Calculation
CNR=EIRP-BO+GTR-FSL-DL-k //Carrier to noise ratio(dB)
//Result
printf("The Carrier to noise density ratio at the earth station is %.1f dB",CNR)
|