Maker Pro
Maker Pro

Synchrounous signal extraction technique name

S

Steven K. Moore

Jan 1, 1970
0
In my line of work, we extract the magnitude and phase of a response signal
when the excitation signal is known. The excitation is of the form
A*sin(wt) and the response is of the form B*sin(wt+theta) + noise. The
response is sampled 16 times over a full period. Let's denote the sampled
response as R[0] through R[15]. Then the inphase (real) and quadrature
(imag) components are extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is determined.

My question is what is this technique called? I'm sure there is a common
name for it. Some of my colleagues refer to it as a DFT (Discrete Fourier
Transform). Since only a single frequency component is being extracted, I
don't feel this is proper nomenclature. I'm looking for a more correct term
to use to refer to this single frequency extraction technique. Does anyone
have a good name for this?

Thanks,
 
J

James Meyer

Jan 1, 1970
0
My question is what is this technique called? I'm sure there is a common
name for it.

Thanks,

How does that technique differ from the traditional "lock-in amplifier"?

Jim
 
S

Steve

Jan 1, 1970
0
This is sampled first and numerically processed (aka DSP). I think of the
lock-in amp approach as analog I & Q multipliers and lowpass filters to
obtain real and imag components.
 
F

Fred Bloggs

Jan 1, 1970
0
Steven said:
In my line of work, we extract the magnitude and phase of a response signal
when the excitation signal is known. The excitation is of the form
A*sin(wt) and the response is of the form B*sin(wt+theta) + noise. The
response is sampled 16 times over a full period. Let's denote the sampled
response as R[0] through R[15]. Then the inphase (real) and quadrature
(imag) components are extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is determined.

My question is what is this technique called? I'm sure there is a common
name for it. Some of my colleagues refer to it as a DFT (Discrete Fourier
Transform). Since only a single frequency component is being extracted, I
don't feel this is proper nomenclature. I'm looking for a more correct term
to use to refer to this single frequency extraction technique. Does anyone
have a good name for this?

Thanks,


Your computation is the very definition of DFT evaluated at Fs/16,
Fs=sampling frequency =w =2*pi*Fs/16 in the case. DFT is a function that
evaluates at 0, Fs/16, 2*Fs/16,..., 15*Fs/16. So you could term this
"DFT evaluated at the resolution frequency."
 
T

Tim Wescott

Jan 1, 1970
0
Steven said:
In my line of work, we extract the magnitude and phase of a response signal
when the excitation signal is known. The excitation is of the form
A*sin(wt) and the response is of the form B*sin(wt+theta) + noise. The
response is sampled 16 times over a full period. Let's denote the sampled
response as R[0] through R[15]. Then the inphase (real) and quadrature
(imag) components are extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is determined.

My question is what is this technique called? I'm sure there is a common
name for it. Some of my colleagues refer to it as a DFT (Discrete Fourier
Transform). Since only a single frequency component is being extracted, I
don't feel this is proper nomenclature. I'm looking for a more correct term
to use to refer to this single frequency extraction technique. Does anyone
have a good name for this?

Thanks,


I call it I/Q demodulation. Yes, it is a single-frequency DFT as well,
but thats a pretty fancy name for a pretty simple operation.
 
F

Fred Bloggs

Jan 1, 1970
0
Tim said:
Steven said:
In my line of work, we extract the magnitude and phase of a response
signal when the excitation signal is known. The excitation is of the
form A*sin(wt) and the response is of the form B*sin(wt+theta) +
noise. The response is sampled 16 times over a full period. Let's
denote the sampled response as R[0] through R[15]. Then the inphase
(real) and quadrature (imag) components are extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is determined.

My question is what is this technique called? I'm sure there is a
common name for it. Some of my colleagues refer to it as a DFT
(Discrete Fourier Transform). Since only a single frequency component
is being extracted, I don't feel this is proper nomenclature. I'm
looking for a more correct term to use to refer to this single
frequency extraction technique. Does anyone have a good name for this?

Thanks,



I call it I/Q demodulation. Yes, it is a single-frequency DFT as well,
but thats a pretty fancy name for a pretty simple operation.


Nah- it's called "coherent detection" generally because there is
coherence between his sampling frequency and the signal frequency.
 
T

Tim Wescott

Jan 1, 1970
0
Fred said:
Tim said:
Steven said:
In my line of work, we extract the magnitude and phase of a response
signal when the excitation signal is known. The excitation is of the
form A*sin(wt) and the response is of the form B*sin(wt+theta) +
noise. The response is sampled 16 times over a full period. Let's
denote the sampled response as R[0] through R[15]. Then the inphase
(real) and quadrature (imag) components are extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is determined.

My question is what is this technique called? I'm sure there is a
common name for it. Some of my colleagues refer to it as a DFT
(Discrete Fourier Transform). Since only a single frequency
component is being extracted, I don't feel this is proper
nomenclature. I'm looking for a more correct term to use to refer to
this single frequency extraction technique. Does anyone have a good
name for this?

Thanks,




I call it I/Q demodulation. Yes, it is a single-frequency DFT as
well, but thats a pretty fancy name for a pretty simple operation.


Nah- it's called "coherent detection" generally because there is
coherence between his sampling frequency and the signal frequency.

I've seen it called any number of things, including things not even
repeatable here. So we probably have licence to call it pretty much
anything we want. How about if I call it "Fred Bloggs" from now on, and
you call it "Tim Wescott".
 
T

Terry Given

Jan 1, 1970
0
Tim said:
Fred said:
Tim said:
Steven K. Moore wrote:

In my line of work, we extract the magnitude and phase of a response
signal when the excitation signal is known. The excitation is of
the form A*sin(wt) and the response is of the form B*sin(wt+theta) +
noise. The response is sampled 16 times over a full period. Let's
denote the sampled response as R[0] through R[15]. Then the inphase
(real) and quadrature (imag) components are extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is determined.

My question is what is this technique called? I'm sure there is a
common name for it. Some of my colleagues refer to it as a DFT
(Discrete Fourier Transform). Since only a single frequency
component is being extracted, I don't feel this is proper
nomenclature. I'm looking for a more correct term to use to refer
to this single frequency extraction technique. Does anyone have a
good name for this?

Thanks,




I call it I/Q demodulation. Yes, it is a single-frequency DFT as
well, but thats a pretty fancy name for a pretty simple operation.


Nah- it's called "coherent detection" generally because there is
coherence between his sampling frequency and the signal frequency.

I've seen it called any number of things, including things not even
repeatable here. So we probably have licence to call it pretty much
anything we want. How about if I call it "Fred Bloggs" from now on, and
you call it "Tim Wescott".


Thats just silly. Use "Tim Bloggs" and "Fred Wescott".

Cheers
DaFTerry
 
F

Fred Bloggs

Jan 1, 1970
0
Tim said:
Fred said:
Tim said:
Steven K. Moore wrote:

In my line of work, we extract the magnitude and phase of a response
signal when the excitation signal is known. The excitation is of
the form A*sin(wt) and the response is of the form B*sin(wt+theta) +
noise. The response is sampled 16 times over a full period. Let's
denote the sampled response as R[0] through R[15]. Then the inphase
(real) and quadrature (imag) components are extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is determined.

My question is what is this technique called? I'm sure there is a
common name for it. Some of my colleagues refer to it as a DFT
(Discrete Fourier Transform). Since only a single frequency
component is being extracted, I don't feel this is proper
nomenclature. I'm looking for a more correct term to use to refer
to this single frequency extraction technique. Does anyone have a
good name for this?

Thanks,




I call it I/Q demodulation. Yes, it is a single-frequency DFT as
well, but thats a pretty fancy name for a pretty simple operation.


Nah- it's called "coherent detection" generally because there is
coherence between his sampling frequency and the signal frequency.

I've seen it called any number of things, including things not even
repeatable here. So we probably have licence to call it pretty much
anything we want. How about if I call it "Fred Bloggs" from now on, and
you call it "Tim Wescott".


Is it incoherent or noncoherent detection for you?
 
T

Tim Wescott

Jan 1, 1970
0
Fred said:
Tim said:
Fred said:
Tim Wescott wrote:

Steven K. Moore wrote:

In my line of work, we extract the magnitude and phase of a
response signal when the excitation signal is known. The
excitation is of the form A*sin(wt) and the response is of the form
B*sin(wt+theta) + noise. The response is sampled 16 times over a
full period. Let's denote the sampled response as R[0] through
R[15]. Then the inphase (real) and quadrature (imag) components are
extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is
determined.

My question is what is this technique called? I'm sure there is a
common name for it. Some of my colleagues refer to it as a DFT
(Discrete Fourier Transform). Since only a single frequency
component is being extracted, I don't feel this is proper
nomenclature. I'm looking for a more correct term to use to refer
to this single frequency extraction technique. Does anyone have a
good name for this?

Thanks,





I call it I/Q demodulation. Yes, it is a single-frequency DFT as
well, but thats a pretty fancy name for a pretty simple operation.


Nah- it's called "coherent detection" generally because there is
coherence between his sampling frequency and the signal frequency.

I've seen it called any number of things, including things not even
repeatable here. So we probably have licence to call it pretty much
anything we want. How about if I call it "Fred Bloggs" from now on,
and you call it "Tim Wescott".


Is it incoherent or noncoherent detection for you?

After four beers I'm always incoherent.
 
J

Jamie

Jan 1, 1970
0
Steven said:
In my line of work, we extract the magnitude and phase of a response signal
when the excitation signal is known. The excitation is of the form
A*sin(wt) and the response is of the form B*sin(wt+theta) + noise. The
response is sampled 16 times over a full period. Let's denote the sampled
response as R[0] through R[15]. Then the inphase (real) and quadrature
(imag) components are extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is determined.

My question is what is this technique called? I'm sure there is a common
name for it. Some of my colleagues refer to it as a DFT (Discrete Fourier
Transform). Since only a single frequency component is being extracted, I
don't feel this is proper nomenclature. I'm looking for a more correct term
to use to refer to this single frequency extraction technique. Does anyone
have a good name for this?

Thanks,

your colleagues are correct.
there are formulars that work much faster than the conventional math
used in basic DFT/IDFT (inverse....)_
FFT is commonly used.. (Fast fourier Transforms)/
if you want to see more code like this.
search google for files.
fourier.pas,FFT.pas, FFT.C, FFT.CPP etc..

you will find lots of examples.
 
R

Rich Grise

Jan 1, 1970
0
Fred said:
Tim said:
Steven K. Moore wrote:

In my line of work, we extract the magnitude and phase of a response
signal when the excitation signal is known. The excitation is of the
form A*sin(wt) and the response is of the form B*sin(wt+theta) +
noise. The response is sampled 16 times over a full period. Let's
denote the sampled response as R[0] through R[15]. Then the inphase
(real) and quadrature (imag) components are extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is determined.

My question is what is this technique called? I'm sure there is a
common name for it. Some of my colleagues refer to it as a DFT
(Discrete Fourier Transform). Since only a single frequency
component is being extracted, I don't feel this is proper
nomenclature. I'm looking for a more correct term to use to refer to
this single frequency extraction technique. Does anyone have a good
name for this?

I call it I/Q demodulation. Yes, it is a single-frequency DFT as
well, but thats a pretty fancy name for a pretty simple operation.


Nah- it's called "coherent detection" generally because there is
coherence between his sampling frequency and the signal frequency.

I've seen it called any number of things, including things not even
repeatable here. So we probably have licence to call it pretty much
anything we want. How about if I call it "Fred Bloggs" from now on, and
you call it "Tim Wescott".


I'd vote for "The Moore Detector". ;-)

Cheers!
Rich
 
J

James Meyer

Jan 1, 1970
0
This is sampled first and numerically processed (aka DSP). I think of the
lock-in amp approach as analog I & Q multipliers and lowpass filters to
obtain real and imag components.

Almost any analog technique can be implemented digitally by sampling
followed by digital processing. I still think your device could ne called a
lock-in amplifier. Maybe a digital lock-in amplifier?

Jim
 
W

Winfield Hill

Jan 1, 1970
0
James Meyer wrote...
Almost any analog technique can be implemented digitally by sampling
followed by digital processing. I still think your device could ne called a
lock-in amplifier. Maybe a digital lock-in amplifier?

If you wish, it's still a lock-in amp.
 
S

Steve

Jan 1, 1970
0
Jamie said:
Steven said:
In my line of work, we extract the magnitude and phase of a response
signal when the excitation signal is known. The excitation is of the
form A*sin(wt) and the response is of the form B*sin(wt+theta) + noise.
The response is sampled 16 times over a full period. Let's denote the
sampled response as R[0] through R[15]. Then the inphase (real) and
quadrature (imag) components are extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is determined.

My question is what is this technique called? I'm sure there is a common
name for it. Some of my colleagues refer to it as a DFT (Discrete
Fourier Transform). Since only a single frequency component is being
extracted, I don't feel this is proper nomenclature. I'm looking for a
more correct term to use to refer to this single frequency extraction
technique. Does anyone have a good name for this?

Thanks,

your colleagues are correct.
there are formulars that work much faster than the conventional math used
in basic DFT/IDFT (inverse....)_
FFT is commonly used.. (Fast fourier Transforms)/
if you want to see more code like this.
search google for files.
fourier.pas,FFT.pas, FFT.C, FFT.CPP etc..

you will find lots of examples.


Thanks, but I'm quite fami,iar with FFT algorithms (My master thesis
developed a parallel processing spectrum analyzer based on Cooley-Tukey FFT
algorithm.) The need is not a full spectrum decomposition, but merely the
extraction of a single frequency. Sort of a DSP version of a lock-in
amplifier.

It doesn't seem that a definitive name has bubbled to the top. I've heard:
+ DFT evaluated at the resolution frequency
+ I/Q demodulation
+ coherent detection
+ Fred Bloggs :)
+ Tim Wescott :)
+ "The Moore Detector". ;-)

Thanks for all your input.
Steve Moore
 
J

James Meyer

Jan 1, 1970
0
It doesn't seem that a definitive name has bubbled to the top. I've heard:
+ DFT evaluated at the resolution frequency
+ I/Q demodulation
+ coherent detection
+ Fred Bloggs :)
+ Tim Wescott :)
+ "The Moore Detector". ;-)

Thanks for all your input.
Steve Moore

If Win Hill says it's a lock-in amp, then it's a lock-in amp.

Jim
 
S

Steven K. Moore

Jan 1, 1970
0
My most humble apologies. When I went back to collect all the answers
suggested, I failed to record the response from one of my most respected
voices in this newsgroup. Win, I beg your forgiveness.

Steve Moore
 
W

Winfield Hill

Jan 1, 1970
0
John Larkin wrote...
Why? Where's the amplifier?

The "amplifier" part of the name is tradition, little more.
BTW, most modern lock-in amps are DSP based these days.
 
G

Gerhard v d Berg

Jan 1, 1970
0
Steven K. Moore said:
In my line of work, we extract the magnitude and phase of a response signal
when the excitation signal is known. The excitation is of the form
A*sin(wt) and the response is of the form B*sin(wt+theta) + noise. The
response is sampled 16 times over a full period. Let's denote the sampled
response as R[0] through R[15]. Then the inphase (real) and quadrature
(imag) components are extracted by:

real = sum(i=0 to 15) of [R*cos(2*pi()*i/16)]
imag = sum(i=0 to 15) of [R*sin(2*pi()*i/16)]

From this the magnitude and phase of the response signal is determined.

My question is what is this technique called? I'm sure there is a common
name for it. Some of my colleagues refer to it as a DFT (Discrete Fourier
Transform). Since only a single frequency component is being extracted, I
don't feel this is proper nomenclature. I'm looking for a more correct term
to use to refer to this single frequency extraction technique. Does anyone
have a good name for this?

Thanks,

This guy does only 4 samples per cycle, which results in serious calculation
minimisation, and calls it Quadrature Direct Fourier Transform (QDFT).
see http://members.cox.net/berniekm/qdft.html

Gerhard van den Berg
 
Top