blob: 2acdf16a09169f225257b4083247e45dd9e1f872 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Chapter 24: Space Wave Propagation
//Example 24-9.4
clc;
//Variable Initialization
gain = 10 //Antenna gain (dB)
Wt = 500 //Power radiation (W)
d = 15e3 //Distance (m)
Wr = 2e-6 //Received power (W)
//Calculations
Ae = Wr*(4*%pi*(d**2))/(Wt*gain) //Effective area (m^2)
//Result
mprintf("The effective area of the receiving antenna is %.2f m^2", Ae)
|