diff options
Diffstat (limited to '3773/CH2/EX2.7/Ex2_7.sce')
-rw-r--r-- | 3773/CH2/EX2.7/Ex2_7.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3773/CH2/EX2.7/Ex2_7.sce b/3773/CH2/EX2.7/Ex2_7.sce new file mode 100644 index 000000000..a28ec0d77 --- /dev/null +++ b/3773/CH2/EX2.7/Ex2_7.sce @@ -0,0 +1,14 @@ +//Chapter 2: Antenna Basics +//Example 2-10.1 +clc; + +//Variable Initialization +Z = 120*%pi //Intrinsic impedance of free space (ohm) + +//Calculation +max_aper = Z/(320*%pi**2) //Max. effective aperture (lambda squared) +direct = 4*%pi*max_aper //Directivity (unitless) + +//Result +mprintf("The Maximum effective aperture is %.3f lambda square",max_aper) +mprintf("\nThe Directivity is %.1f", direct) |