summaryrefslogtreecommitdiff
path: root/3773/CH7/EX7.7/Ex7_7.sce
blob: 5baf1f77b975d1508a311aea8e1184e00909c317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)