diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3773/CH21/EX21.2/Ex21_2.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3773/CH21/EX21.2/Ex21_2.sce')
-rw-r--r-- | 3773/CH21/EX21.2/Ex21_2.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3773/CH21/EX21.2/Ex21_2.sce b/3773/CH21/EX21.2/Ex21_2.sce new file mode 100644 index 000000000..f6021e28f --- /dev/null +++ b/3773/CH21/EX21.2/Ex21_2.sce @@ -0,0 +1,24 @@ +//Chapter 21: Antenna Measurements +//Example 21-2.2 +clc; + +//Variable Initialization +horn_len = 350e-3 //Length of horn (m) +ap_wid = 200e-3 //Aperture width (m) +ap_hei = 150e-3 //Aperture height (m) +del_L = 0.2 //Peak to peak uncertainty (dB) +f = 10e9 //Frequency (Hz) +c = 3e8 //Speed of light (m/s) + +//Calculations +wave_lt = c/f //Wavelength (m) +r_rnf = wave_lt/(2*%pi) ////Outer boundary of reactive near field (m) +r_ff = 2*(ap_wid**2)/wave_lt //Fraunhofer region (m) +r2_ff = r_rnf/(10**(del_L/40)-1) //Minimum distance where effect of near field is small (m) +r3_ff = 2*horn_len/(10**(del_L/10)-1) //Minimum distance where effect of rotation of AUT is small (m) + +//Result +mprintf( "The Outer boundary of reactive near field is at a distance %.4f m",r_rnf) +mprintf( "\nThe Fraunhofer region starts at a distance %.1f m",r_ff) +mprintf( "\nThe Minimum distance where effect of near field is small enough is %.2f m",r2_ff) +mprintf( "\nThe Minimum distance where effect of rotation of AUT is small enough is %.1f m", r3_ff) |