blob: 58bd3912957d5329c658dbbd2463f6ae58afa4a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Chapter 3: The Antenna Family
//Example 3-7.1
clc;
//Variable Initialization
f = 599e6 //Frequency of TV Station (Hz)
E = 1e-6 //Field strength (V/m)
D = 20 //Diameter of antenna (m)
c = 3e8 //Speed of light (m/s)
Z_0 = 377 //Intrinsic impedence of free space (ohm)
//Calculation
wave_lt = c/f //Wavelength (m)
A_e = (D*(wave_lt**2))/(4*%pi) //Effective aperture (m^2)
P_r = (E**2)*A_e/Z_0 //Received power (W)
//Result
mprintf("The received power is %.2e W", P_r)
|