Chapter 12: Aperture Antennas

Example 12.2, Page no. 675

In [9]:
import math
#Assume lamda = 50
lamda=50.0
a=3*lamda
b=2*lamda
n=1

theta_1=114.6*(math.asin(n*lamda/b))
print "First Null Beamwidth:",theta_1,"deg"

theta_h=114.6*math.asin(0.443*lamda/b)
print "Half-power beamwidth:",theta_h,"deg"

theta_s=114.6*math.asin(1.43*lamda/b)
print "First Sidelobe Beamwidth:",theta_s,"deg"

E_s=0.217
print "Maximum of first side lobe:",20*log10(E_s),"dB"

D0=4*pi*a*b/lamda**2
print "Maximum directivity:",10*log10(D0),"dB"
First Null Beamwidth: 60.0044196836 deg
Half-power beamwidth: 25.5961863013 deg
First Sidelobe Beamwidth: 91.2931226067 deg
Maximum of first side lobe: -13.270805323
Maximum directivity: 18.7736111441 dB

Example 12.4, Page no. 683

In [4]:
#Given 
lamda=50.0

#For a=b=20*lamda
print "For a=b=20*lamda, the efficiency for the uniform aperture is 94%."

a=b=3*lamda
k=2*pi/lamda
theta1=10*pi/180
u=(k*a/2)*sin(theta1)

print "For u = %f, the efficiency is 58."%u
For a=b=20*lamda, the efficiency for the uniform aperture is 94%.
For u = 1.636596, the efficiency is 58.

Example 12.5, Page no. 696

In [5]:
#Given 
lamda=50.0
theta=30*pi/180
a_sq=b_sq=lamda/(2*sin(theta))
D0=pi/sin(theta)**2
print "Directivity of square patch is : %f dB" %(10*log10(D0))

a_cir=lamda/(3.413*sin(theta))
D0cir=(1.079*pi)/(sin(theta)**2)
print "Directivity of circular patch is : %f dB" %(10*log10(D0cir))
Directivity of square patch is : 10.992099 dB
Directivity of circular patch is : 11.322313 dB

Example 12.6, Page no. 699

In [7]:
#Given
Zc=73+42.5j    #Characteristic impedance
eta=376.7

Zs=eta**2/(4*Zc)
print "Terminal(input) impedance od the slot:",Zs,"Ohms"
Terminal(input) impedance od the slot: (362.948424022-211.305589328j) Ohms