Phase unwrapping

Hello,

I just started to work with GNU radio for my very basic needs, so please
excuse my naive questions and probably my inappropriate use of the
jargon.

My first trivial application of GNU radio is to simply measure the phase
of a phase modulated signal with an Ettus R. USRP N210 and a LFRX
daughter-board.

Everything works as expected, but I haven’t found a way to do phase
unwrapping (removing the 2pi ambiguity in the phase obtained from the
arctan function looking at discontinuities in the phase data). Is this
functionality offered somewhere, and I missed it, or should I look into
implementing it myself?

Thanks. Cheers,
Daniele

Daniele,

The problem with phase unwrapping is that it is unbounded, and will tend
to
infinity. Once it gets very big, when you try to add a small number to
a
very big number, floating point loses precision. Eventually, adding
small
to extremely big returns the big number unchanged. This isn’t that
useful.

Matt

On Mon, Jun 16, 2014 at 2:40 PM, Daniele N. [email protected]

Daniele,

I have worked on this problem for a specific case as well. I have a
document with source code and a short description of what’s happening
that
can be found here (
Dropbox - Error - Simplify your life).

Michael

On Mon, Jun 16, 2014 at 10:05 AM, Daniele N. [email protected]

Hello Matt,

thank for your answer. I’m aware of the problem and in my application I
can keep phase bounded, but not bounded to (-pi, +pi] therefore I need
unwrapping to make sense of my modulation data.

If such feature does not exist in GNU radio, I hope it is not too hard
to code it myself.

Thanks. Cheers,
Daniele

On 16/06/2014 19:47, Michael B. wrote:

I have worked on this problem for a specific case as well. I have a
document with source code and a short description of what’s happening
that can be found here

Hello Michael,

thank for your example code, but the algorithm is trivial, what I don’t
yet know is how to implement it in such a way that it can be used within
the gnuradio framework. I’m having a look at the documentation now.

Cheers,
Daniele

If you take a look at the doc again, i updated it a little bit to show
it
working in an OOT work function.

Michael

On Mon, Jun 16, 2014 at 10:53 AM, Daniele N. [email protected]