diff options
Diffstat (limited to '3773/CH7/EX7.7')
-rw-r--r-- | 3773/CH7/EX7.7/Ex7_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3773/CH7/EX7.7/Ex7_7.sce b/3773/CH7/EX7.7/Ex7_7.sce new file mode 100644 index 000000000..5baf1f77b --- /dev/null +++ b/3773/CH7/EX7.7/Ex7_7.sce @@ -0,0 +1,13 @@ +//Chapter 7: Loop, Slot and Horn Antennas +//Example 7-17.3 +clc; + +//Variable Initialization +Zd = 710 //Terminal impedance of cylindrical dipole +Z0 = 376.7 //Intrinsic impedance of free space (ohm) + +//Calculation +Z1 = Z0**2/(4*Zd) //Terminal resistance of complementary slot (ohm) + +//Result +mprintf("The terminal resistance of the complementary slot is %.0f ohm",Z1) |