chapter 4 Amplitude Modulator and Demodulator circuits

Example 4.1 Page no 129

In [10]:
#given

Vcc =48
I = 3.5
efficiency =70                           #percent
modulation = 67                          #percent
m = modulation/100.0
#calculation

Pi = Vcc*I
Pc=Pi
Pm = Pi/2.0
Pout = (efficiency*Pi)/100.0
Ps = Pc*((m**2)/4.0)
maximum_swing = 2*Vcc 
#Result

print "(a) RF input power to the output stage is ",Pi,"W"
print "(b) AF power required for 100 percent modulation is ",Pm,"W"
print "(c) Carrier output power is ",Pout,"W"
print "(d) Power in one sideband for 67 percent modulation is ",round(Ps,2),"W"
print "(e) maximum and minimum dc supply voltage swing with 100 percent modulation is ",maximum_swing,"V"
(a) RF input power to the output stage is  168.0 W
(b) AF power required for 100 percent modulation is  84.0 W
(c) Carrier output power is  117.6 W
(d) Power in one sideband for 67 percent modulation is  18.85 W
(e) maximum and minimum dc supply voltage swing with 100 percent modulation is  96 V

Example 4.2 Page no 145

In [29]:
#given

fc =4.2*10**6
f1 = 300
f2 = 3400
#calculation
#upper sideband

x0=fc+f1
y0=fc+f2
#lower sideband

x1=fc-f1
y1=fc-f2
frequency=(x1+y1)/2.0
#Result 

print "(a) Upper sideband ranges from ",x0,"to",y0
print "    lower sideband ranges from ",x1,"to",y1
print "(b) approximate center frequency of a bandpass filter is ",frequency,"Hz"
(a) Upper sideband ranges from  4200300.0 to 4203400.0
    lower sideband ranges from  4199700.0 to 4196600.0
(b) approximate center frequency of a bandpass filter is  4198150.0 Hz