discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] integral frequency shift correcting in ofdm_frame


From: Martin Braun
Subject: Re: [Discuss-gnuradio] integral frequency shift correcting in ofdm_frame_equalizer_vcvc_impl.cc
Date: Tue, 02 Sep 2014 17:37:49 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0

Tiankan,

this corrects the coarse freq offset propagation due to the CP.
As 'i' increments, this represents later times. So, in a sense, this is
in time direction.

M

On 09/02/2014 04:14 PM, Tiankun Hu wrote:
> Hi All,
> I found "ofdm_frame_equalizer_vcvc_impl.cc" use below code to correct
> integral freq shift(IFO) in freq domain, but as I known, the IFO only
> cause signal cyclic shifting in freq domain, why this block use gr_expj
> to correcting IFO in freq domain? might be blow code should be done in
> time domain.
> 
>    // Correct the frequency shift on the symbols
>    gr_complex phase_correction;
>    for (int i = 0; i < frame_len; i++) {
>        phase_correction = gr_expj(-M_TWOPI * carrier_offset * d_cp_len /
> d_fft_len * (i+1));
>        for (int k = 0; k < d_fft_len; k++) {
>            out[i*d_fft_len+k] *= phase_correction;
>        }
>    }
> 
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]