Random Quote Board

Gnu Radio Companion Frequency Demodulators

Gary Schafer, 20 November 2019 (Updated and corrected April 2020)

I'd like to acknowledge and thank the wonderful author Richard G. Lyons and his book "Understanding Digital Signal Processing" for much of the knowledge that made this post (and several that will follow) possible.

I've been playing around quite a bit with various software defined radios (SDRs) and Gnu Radio Companion. I initially found a lot of different websites with tutorials. How to create a basic graph. How to connect the blocks. Like probably many of you out there, my first working graph was a FM receiver. After I got my first one working, I went a little... deep... down the rabbit hole trying to understand how it worked. The following is the result of that rabbit hole mapping.

FM Demod and the "WBFM Receive" Block

The first FM receiver I created used the "WBFM Receive" block, as shown below.

Gnu Radio Companion (GRC) flow graph for a broadcast FM receiver. This particular flow graph uses the "WFBM Receive" block. Note that the source is a file. In this case, it is a previously record IQ file captured using GRC.
Gnu Radio Companion spectral and time-domain graphs of RF and baseband signals from FM receiver. The upper, left is the RF spectrum (before demodulation). The upper, right is the baseband spectrum (the spectrum of the FM broadcast signal after demodulation). The lower time-domain graph is the baseband signal (the information signal after demodulation from the carrier).

I'm the type of person who really wants to understand what's going on. While I was playing around, I discovered that the "WBFM Receive" block used another block called "quadrature demod". When I looked into it, I discovered that the "quadrature demod" was a specific form of frequency demodulator. The "WBFM Receive" block actually ties two blocks together. The first is the "Quadrature Demod", which performs the frequency demodulation. The second is a decimator, which reduces the bit rate. While it is not part of the parameters of the "WBFM Receive" block, there also appears to be a lowpass filter. I'll explain why I believe that shortly.

FM Receiver Using the Quadrature Demod Block

I decided to create a slighly different graph, this time using the "Quadrature Demod" block in place of the "WBFM Receive" block. It has one adjustable parameter, called the "Sensitivity". The "sensitivity" of this block is nothing more than a scaling factor. It's initially based on two things, the sample rate and the number of radians in a circle (2π). When you initially open the sensitivity value, it has three parameters by default. These are the sample rate, the value "2π", and an FSK deviation. The FSK deviation is for something else, and despite the fact that it is included by default, it's not needed.

GRC graph of a FM receiver using the "Quadrature Demod" block. Note the addition of the variable "pi". It's used as part of the "Sensitivity" setting for the "Quadrature Demod" block. The "Sensitivity" is set to "samp_rate/10/(2*pi*75e3)". The original sample rate is 2.4 MHz. The lowpass filter block decimates this by 10 (hence "samp_rate/10"). The "75e3" accounts for the fact that standard FM broadcast uses a 75 kHz deviation.
Spectral and time-domain displays from the FM receiver using the "Quadrature Demod" block. The RF spectrum (upper, left display) is the same as the previous graph. The baseband spectrum (upper, right) has roughly the same appearance as with the graph using the "WBFM Receive" block, except that it is not lowpass filtered. This is more apparent as a larger deviation of the time-domain signal amplitude.

You may be wondering, "Where's the audio output?" I didn't need an audio output to know that the signal was demodulating properly. The appearance of the baseband spectrum tells me everything I need to know. Here's what the spectrum tells me.

Baseband spectrum of a FM broadcast station. This is a typical station transmitting stereo audio. The spectrum from 0 - 15 kHz is both left (L) and right (R) channels combined. At 19 kHz, there is a pilot tone. This tone serves multiple purposes. First, its appearance tells your radio that it is receiving a stereo signal. Its second purpose is to demodulate the "L-R Audio", also called the "stereo signal", at 38 kHz (second harmonic) followed by the "RBDS" signal at 57 kHz (third harmonic). The last signal is a "SCA" or "Subsidiary Communications Authority". It's purpose is typically to provide a secondary audio signal.

This is how the baseband spectrum of a FM broadcast signal should appear. Some signals do not have the stereo signal (such as talk radio shows), many do not have the SCA, and some do not have the RBDS. But this one does, and the spectrum is precisely as it should be.

So how is the "Quadrature Demod" block demodulating the signal?

This still does not explain what is actually going on in the "Quadrature Demod" block. To see that, you have to look at the documentation of the block itself. It says:

This can be used to demod FM, FSK, GMSK, etc. The input is complex baseband, output is the signal frequency in relation to the sample rated, multiplied with the gain.

Mathematically, this block calculates the product of the one-sample delayed input and the conjugate undelayed signal, and then calculates the argument of the resulting complex number:

y[n] = \mathrm{arg}\left(x[n] \, \bar x [n-1]\right).

Yes, that is some interesting mathematical guacamole right there. Here's what the text says:

\( \Large y[n] = \arg (c^* [n] \times c[n-1] ) \)

Where:

UPDATE Feb 2021: When I originally wrote this post, the documentation for the "Quadrature Demod" block said that the non-delayed sample was conjugated. I originally thought the same thing, and my original post said as much. The equation (written in a a set of Tex commands) for the "Quadrature Demod" block says:

\( \Huge y[n] = \mathrm{arg}\left(x[n] \, \bar x [n-1]\right) \)

This equation is correct. The documentation, and this post, have since been corrected.

This is a polar discriminator. A polar discriminator is a way to calculate the relative phase difference between two complex samples. It multiplies two complex samples, where one sample is conjugated (the sign of its imaginary component is inverted) and the other sample is delayed one sample period. The result of the multiplication is a third complex sample. The phase of that new complex sample is the phase difference between the two, original samples. The last step is to actually calculate the phase of the complex sample. That is where the "argument" function comes into play. The "argument" function calculates the phase of a complex sample.

The correct diagram for the polar discriminator. The delayed sample is conjugated. That sample is multiplied by the current one (which is unchanged). Calculating the phase of the resulting sample returns the FM demod of the signal.

Frequency is a difference of phase over time, or Δθ / Δt. We've calculated the difference in phase (Δθ). We now need the "Δt". That is the sample period. So divide the difference in phase by the sample period. Dividing by the sample period is the same as multiplying by the sample rate. Therefore, to calculate the frequency of a signal, calculate the phase difference, then multiply by the sample rate. This is how the "Quadrature Demod" block frequency discriminates (demodulates) FM signals.

Note that the only difference between the output of the two demodulators is that the "WBFM Receive" demodulator is lowpass filtered compared to that of the "Quadrature Demod". Otherwise, they're identical. I prefer to use the "Quadrature Demod" because it gives me a better opportunity to create a stereo receiver. I'll cover that (probably) in a future post.

FM Demodulator with Polar Discriminator using Separate Blocks

Well, now that I knew how the "Quadrature Demod" block was working, I decided to see if I could make it using separate Gnu Radio Companion blocks. Based on the walk-through above, it would require a delay, a complex conjugate, a multiply, and a way to calculate the phase. Turns out that GRC has all of these components. That lead to this graph:

This is the frequency demodulator using separate GRC blocks. The lowpass filtered signal is split, with one branch passed through a delay block, a complex conjugate block, then into the multiply block. The other branch goes straight into the multiply block. The product of the multiply block feeds into a phase discriminator (the "Complex to Mag Phase" block). The output is the frequency demodulated signal. The only thing left is to scale it using the "Multiply Const" block. The "Multiply Const" block is the same as the "Sensitivity" in the "Quadrature Demod" block.
This is how the different components of the system can be grouped together. The part in green (marked "Discriminator") provide the same functionality as the "Quadrature Demod" block.
This is the output of the polar discriminator using separate components. Note that it is identical to that using the "Quadrature Demod".

The output of this demodulator is identical to that of the "Quadrature Demod". I'm guessing that it is, in fact, identical. My guess is that it is not as efficient as having it programmed into one block, so using the "Quadrature Demod" is still the best way to go.

FM Demodulator with Polar Discriminator using Different Separate Blocks

Why stop now? It turns out my research into the polar discriminator led to an epiphany. With the polar discriminator above, there's a "Complex Conjugate" block followed by a "Multiply" block. Why? Because the complex conjugate inverts the sign of the phase. This means that the multiply by a complex conjugate is similar to a divide. So why not try that? Why not remove the "Complex Conjugate" and "Multiply" blocks and just use a "Divide" block instead? Here's how that looked:

Polar discriminator using a "Divide" block rather than a "Complex Conjugate" and "Multiply" block.
Output from the polar discriminator shown at left. It is identical to the output from both the "Quadrature Demod" and the polar discriminator using the "Complex Conjugate" and "Multiply" blocks above.

The output of this demodulator appears identical to that of the graphs using the "Quadrature Demod" and the separate parts including the "Complex Conjugate" and "Multiply" blocks. It appears that my epiphany was a correct one.

It's the little things.

Frequency Demodulator using Basic Phase Difference

Okay, I've shown several, viable options for creating a frequency discriminator using (slightly) different methods and components. All of the above use the polar discriminator method. However, when I first started looking at frequency demodulators in the digital domain, I used a much more complicated method. As I said above, frequency is a change of phase over time. I've been studying digital signal processing for some time. Several years ago, I created my first digital demodulator in Mathcad. I did this by calculating the phase of each sample individually, then subtracting one phase from the previous one. I no longer use Mathcad (I'm more of a Gnu Octave user now), but I decided to try this technique in GRC. This lead to the following graph:

This is the GRC graph that calculates the phase of each sample individually, then tries to subtract the previous phase from the current one. This is essentially the polar discriminator in reverse (calculate phase, then calculate negative-phase-and-delay).
The output of this frequency demodulator has several "spikes" (impulses). The reason is that the "phase" calculation provides numbers between -π and +π. If two, consecutive values straddle the line between (wrap around), then the difference calculation will suddenly shoot up to near +/-2π. I didn't show the baseband spectrum because the impulses buried the signals in noise.
This is a comparison between the basic phase difference method (left) and the use of the quadrature demod block (right). The quadrature demod block uses the polar discriminator method. This ensures that the measured phase is always between +/-π without having to use a conditional function (if/then, etc). This means no impulses similar to the basic phase difference method.

The graph above sorta / kinda works. You can see the baseband signal in the time-domain (shown above, left), especially when compared to the time-domain baseband from the "Quadrature Demod" block (above, right). But it's covered in impulsive noise. That's due to the subtraction part of one phase from another. The absolute values of the phase run between +/-π. But what if one value is, for example, near -π and the next near +π? The difference will then shoot up to somewhere near +/-2π. Those are the impulses shown above. In my original Mathcad worksheet, I used Mathcad's conditional functions (namely an "if/then" loop) to account for this. If a value had an absolute value above π, subtract that value from 2π. It worked. However, GRC does not have a conditional block I can use. This means that this is as good as it is going to get. In other words, this is not a viable option for a frequency demodulator in GRC.

Frequency Demodulator Without the Arctangent Function

All of the frequency demodulators above require calculating the phase of a complex sample. That means using an "arctangent" function. That can be computationally expensive. In his book "Understanding Digital Signal Processing", Richard G. Lyons derives a frequency demodulator that does not use the arctangent function. As I looked at the diagram marked 13-61(b) in the book, I realized that GRC had every component necessary to make it work. That lead to the following, quite complicated graph:

This is the GRC equivalent of Richard G. Lyon's derivation of a frequency demodulator that does not require the "arctangent" function. This is based on Figure 13-61(b) in his book, "Understanding Digital Signal Processing".
This is the output of the frequency demodulator graph at left. It's almost identical to all of the ones shown above with the exception of the phase difference calculation one. And that one is not viable, anyway. In other words, this is a viable technique for frequency demodulation. It worked. The biggest difference that I see is the roll-off of the baseband spectrum on the right.

As you can see from the displays above (right), it works! You'll also note that there is an audio sink on this block. I didn't have that in the others for the simple reason I didn't need to hear the audio. Shortly after I got this working, in my excitement, I sent an e-mail to Mr. Lyons explaining how I was able to get his technique to work in Gnu Radio. A few minutes later, I received a response. He wanted to chat by phone.

That's right. The author of one of the best and most popular books on digital signal processing wanted to talk.

To me.

So we did. Those audio blocks in the graph above? Those were for him. As I was talking to him, I added those blocks, then played the audio from the graph using his technique. I wanted him to hear the result of his brilliance.

Wrap-up & Future Work

I hope you've learned something reading this. At the very least, I hope you understand how the frequency demodulator in Gnu Radio works.

As I get the time, I'm working on future posts to cover more general topics in complex sampling and digital signal processing, all using GRC. It provides a hands-on experience that is not available (or is more difficult to use) anywhere else.

To Delay-and-Conjugate, or Not?

This is a correction to the original post. This is based on a string of e-mails with Mr. Lyons. He'd sent me James Shima's thesis paper outlining the polar discriminator. It was during that exchange that we noticed that there was a difference between Shima's paper, and the description of Gnu Radio's quadrature demodulator. After a bit of research, we determined that Shima was correct. A polar discriminator using a delayed-and-conjugated sample multiplied with a current (and unchanged) sample produces the correct output. By "correct output", we mean that a higher frequency deviation of the carrier will produce a positive output, and a lower frequency deviation will produce a negative output.

Looking at it from the perspective of a polar plot, this means that a motion in the counter-clockwise (positive phase) will correspond with a higher frequency deviation; a clockwise (negative phase) will correspond with a lower frequency deviation.

This led me to another question. Why did the polar discriminator work without a decision circuit, whereas a straightforward phase discriminator did not? What is it about multiplying the complex sample with a previous sample (that is also conjugated) that makes it work without having to worry about the "wrap around" problem? If you look at Shima's equations, multiplying the two complex samples in exponential form simply adds the phases. So, if we have a point that has a phase of, say, 5π/6 and another at -7π/8, the difference angle between them crosses the boundary between +π and -π. A straight subtraction of the phases would be 5π/6 - (-7π/8) = 41π/24. This is larger than π.

The answer is that the complex multiplication takes place using Cartesian coordinates, not exponentials. This means that we're not actually adding the phases; we're multiplying the real and imaginary components together, and the product sample will have a phase that is equivalent to the difference phase between them. And the difference phase, due to the fact that it was arrived at using Cartesian coordinates, will have a phase whose absolute value will always be less than π. Again, due to the fact that the polar discriminator uses Cartesian coordinates for calculating the phase difference, it does not require a decision circuit (if-then-else) to ensure the difference phase is always falls between -π and π.

Here's a Random Fact...