blob: c8eefd833889a8eedeac19b4b4a343223af1747b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Chapter 15: Antennas for Special Applications
//Example 15-13.2
clc;
//Variable Initialization
fre = 3e9 //Frequency (Hz)
eps_r = 80 //Relative permittivity of water (unitless)
//Calculation
tau = atan(1/sqrt(eps_r))*180/%pi //Forward Tilt angle (degrees)
//Result
mprintf("The forward tilt angle is %.1f degrees",tau)
|