1.3  Examples of Analog Amplitude Modulation

1.3.1  DSB-SC

Amplitude modulation can be performed by multiplying, via a mixer, the information signal m(t) (corresponding to x(t) in Figure 1.2) and a carrier c(t) = cos (2πfct + ϕ) to obtain the transmit signal

s(t) = m(t)cos (2πfct + ϕ).
(1.1)

The modulating signal m(t) effectively changes the carrier amplitude over time. Consequently, the information of interest is “encoded” on the amplitude of s(t).

Coherent or synchronous demodulation allows to recover m(t) from s(t) in Eq. (1.1). The term “coherent” is used because this demodulation scheme requires generating the carrier c(t) at the receiver by recovering both its frequency fc and phase ϕ. In practice, the receiver uses estimates f^c and ϕ^ of the correct values fc and ϕ.

To simplify the discussion, assume the ideal case of having f^c = fc and ϕ^ = ϕ, with c(t) perfectly regenerated at the receiver. In this case, m(t) can be recovered by lowpass filtering the product s(t)c(t) as follows:

m(t) = lowpass{s(t)cos (2πfct + ϕ)},

which is illustrated in Figure 1.3.

PIC

Figure 1.3: PSDs (bilateral) in coherent demodulation of a DSB-SC signal. An (ideal) lowpass filter can eliminate the replicas at f = ±2fc.

This amplitude modulation scheme is called DSB-SC (double-sideband suppressed carrier) because the carrier “is not transmitted” and the bandwidth BW rf of s(t) is twice the bandwidth BWi of the information signal.

In practice, several non-ideal circuits and algorithms impact the process suggested by Figure 1.3:

The reader is invited to explore the individual effects of each impairment using simulations.

1.3.2  SSB and VSB

Besides DSB-SC, there are several amplitude modulation schemes for analog signals, such as SSB, VSB and AM, for example. The SSB (single-sideband) and VSB (vestigial-sideband) are amplitude modulation schemes that, when compared to DSB schemes, reduce the required bandwidth to a value BWrf < 2BWi. The main interest here is in AM, which is a DSB scheme (BWrf = 2BWi) but, in contrast to DSB-SC, does not suppress the carrier. It is adopted by commercial broadcast stations and due to its popularity is simply called AM here.

1.3.3  AM

To enable envelope detection and, consequently, avoid coherent demodulation, AM is a modulation scheme in which a DC level A is added to the information signal m(t) before multiplication by the sinusoid carrier c(t). Different than the DSB-SC of Eq. (1.1), the AM transmit signal is

s(t) = (m(t) + A)cos (2πfct + ϕ).
(1.2)

The amplitude A min{m(t)} is chosen to be not smaller than the magnitude of the negative peak of m(t), with m(t) assumed to have mean 𝔼[m(t)] = 0 such that min{m(t)} is indeed negative. This way the transmitter guarantees that m(t) + A 0, which allows m(t) to be recovered by a relatively cheap envelope detection of the received version of s(t). An AM receiver signal can recover m(t) in Eq. (1.2) using coherent demodulation, but the envelope detection scheme is simpler and cheaper to implement.

In designing an analog amplitude-modulation system, one must choose between a more energy-efficient DSB-SC scheme and a simpler AM scheme that allows envelope detection at the receiver but requires the transmitter to spend additional power transmitting the carrier.

Advanced: PSD of AM signals

Assuming m(t) is zero-mean and following the reasoning discussed in Section F.5.5, the AM signal of Eq. (1.2) has PSD given by

SAM(f) = 1 4 [Sm(f + fc) + Sm(f fc)] + A2 4 [δ(f fc) + δ(f + fc)],
(1.3)

where Sm(f) is the PSD of m(t).

Using Eq. (F.20) to integrate Eq. (1.3) over frequency shows that the parcel A2 4 [δ(f fc) + δ(f + fc)] that “transmits the carrier” corresponds to an overhead that consumes power Pc = A22. This is consistent with the fact that this parcel in time-domain is Acos (ωct + ϕ) and A22 is the power of a cosine.

Figure 1.4 illustrates that the added DC level appears as an impulse A2δ(f) in the PSD of (m(t) + A), which is shifted to the frequencies ± fc by the mixer. It should be contrasted with the DSB-SC PSD at the right of Figure 1.2, which does not have the impulses corresponding to the DC level.

PIC

Figure 1.4: Bilateral PSDs of AM signal and mixer inputs. The level A appears originally as an impulse at the DC of the baseband signal and is shifted by the mixer to frequencies ± fc.

Example 1.2. Example of PSD mask for AM transmission. Figure 1.5 gives an example of a possible RF PSD mask for AM transmission2 with PSD values given in dBc, i. e., with respect to the carrier power. The mask in this example indicates that within 10.2 kHz from the channel frequency, the PSD cannot exceed 25 dBc.

PIC

Figure 1.5: Example of RF mask adopted for regulating AM transmission.

PSD masks are imposed by regulatory agencies and indicate the limits but, for example, many AM broadcasters use BW smaller than 10 kHz such as 5 kHz.    

Conceptually, the AM signal can be demodulated with the schemes depicted in Figure 1.6 using either digital or analog signal processing.3 In practice, several extra processing stages must be added, as will be discussed in Section 1.4.

PIC

Figure 1.6: High-level description of possible schemes for AM demodulation.

Example 1.3. The carrier frequency must be high enough. The signals in Figure 1.6 can be generated with Listing 1.1 (only the first lines are shown here).

Listing 1.1: MatlabOctaveCodeSnippets/snip_digi_comm_amSignals.m
1N=80; %total number of samples used in the simulation 
2Np=8, Ns=50; %period of carrier and information signal, respectively 
3Ts=0.25; %sampling period in seconds 
4n=0:N-1; t=n*Ts; %abscissas in n and t, respectively 
5m=sin(2*pi/Ns*n); %information signal 
6A=1.8; %DC level 
7x=(m+A).*cos(2*pi/Np*n); %AM signal
  

One should observe that the carrier frequency must be high enough to have the AM demodulation working properly. The reader is invited to change the period of the carrier frequency in Listing 1.1 from 2 to 16 samples, and observe the results.    

Applications 1.1 and 1.2 further discuss AM.

Advanced: AM modulation index and power overhead

How large is the AM power overhead is controlled by the modulation index h, which is a measure of how much the peak amplitude of s(t) in Eq. (1.2) varies with respect to the unmodulated amplitude A (i. e., m(t) = 0 in Eq. (1.2)). With m(t) being zero-mean and having the same amplitude values for the positive and negative peaks (i. e., max{m(t)} = min{m(t)}), h is given by

h = max{m(t)} A ,
(1.4)

and often expressed as a percentage. To allow envelope detection, a modulation index not larger than 100% is required.4 The impact of h in the AM power overhead is discussed in the sequel.

Example 1.4. AM power overhead when the information signal is a sinusoid. To simplify the analysis, assume that m(t) = Am cos (2πfmt) is a pure sinusoid with peak value Am = hA and frequency fm < fc. In this case, using Eq. (A.10), one can calculate that the parcel m(t)cos (ωct + ϕ) of Eq. (1.2) has power Pm = Am24 = A2h24. Hence, the total power PAM = Pm + Pc of the AM signal, in the case of m(t) being a sinusoid, is:

PAM = Pm + Pc = A2h2 4 + A2 2 = A2 2 (1 + h2 2 ) = Pc (1 + h2 2 ).
(1.5)

As mentioned, the maximum h for envelope detection is 100% and, in this case, the AM power overhead PcPAM is 23 such that the signal parcel that carries information corresponds to only 33.3% of the transmit power. In practice, h < 1 and the AM power overhead would be larger than 23 for a sinusoidal m(t).   

Example 1.5. AM power overhead when the information signal has amplitude normally distributed. As another example, consider when the amplitude of m(t) is distributed according to a Gaussian N(μ,σ2) with μ = 0 and variance (power) σ2. After multiplication by the carrier cosine, Pm = σ22, as discussed in Section F.5.5. To relate Pm and Pc, assume that the peak value of m(t) is 3σ, such that from Eq. (1.4), σ = hA3.

PAM = Pm + Pc = σ2 2 + A2 2 = h2A2 18 + A2 2 = A2 2 (1 + h2 9 ) = Pc (1 + h2 9 ).
(1.6)

In this case, even h = 1 would lead to Pm = 0.1PAM and a 90% power overhead.   

Many methods have been investigated to decrease the AM power overhead such as “companding”, which is similar to the strategy used in PCM with μ or A-law to compress (at Tx) and expand (at Rx) the amplitude of m(t).