summaryrefslogtreecommitdiff
path: root/3773/CH21/EX21.3/Ex21_3.sce
blob: 3c70e4c14c68ec70e76a8feff6520caf3dfa3181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Chapter 21: Antenna Measurements
//Example 21-2.3
clc;

//Variable Initialization
D = 0.5     //Antenna diameter (m)
f = 300e9   //Frequency (Hz)
c = 3e8     //Speed of light (m/s)

//Calculations
wave_lt = c/f   //Wavelength (m)
r_ff = 2*(D**2)/wave_lt    //Fraunhofer region (m)

//Result
mprintf("The Fraunhofer region starts at a distance %d m", r_ff)
mprintf("\nAt 300 GHz the attenuation of the atmosphere is around 10dB/km making the measurement difficult in full-size ranges")