diff options
Diffstat (limited to '3773/CH11/EX11.1')
-rw-r--r-- | 3773/CH11/EX11.1/Ex11_1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3773/CH11/EX11.1/Ex11_1.sce b/3773/CH11/EX11.1/Ex11_1.sce new file mode 100644 index 000000000..9c48479ba --- /dev/null +++ b/3773/CH11/EX11.1/Ex11_1.sce @@ -0,0 +1,15 @@ +//Chapter 11: Broadband and Frequency-Independent Antennas +//Example 11-1.1 +clc; + +//Variable Initialization +d = 4 //spacing (mm) +D = 100 //distance between the openings (mm) + +//Calculation +lambda_short = 10*d //Shortest wavelength (mm) +lambda_long = 2*D //Longest wavelength (mm) +bandwidth = lambda_long/lambda_short //Bandwidth (unitless) + +//Result +mprintf("The approximate bandwidth is %d to 1", bandwidth) |