blob: 99772454e1c41b1c6b00d7b6e847f63663fb6b24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Variable Declaration
r=42000 //Range between ground station and satellite
f=6000 //Frequency(MHz)
//Calculation
FSL=32.4+20*log10(r)+20*log10(f) //Free space loss(dB)
//Result
printf("The free space loss at given frequency is %.1f dB", FSL)
|