Hi all,
I am new to gnuradioand I want to implement Zero Forcing (ZF) and MMSE
equalizer in OFDM communication using gnuradio.
Which part need reconfiguration to implement them?
I use usrp bus series and gnuradio 3.7.0.
Thanks,
Zai
Hi all,
I am new to gnuradioand I want to implement Zero Forcing (ZF) and MMSE
equalizer in OFDM communication using gnuradio.
Which part need reconfiguration to implement them?
I use usrp bus series and gnuradio 3.7.0.
Thanks,
Zai
On Tue, Aug 13, 2013 at 02:21:43PM +0800, ZaInzAiN Jj wrote:
Hi all,
I am new to gnuradio and I want to implement Zero Forcing (ZF) and MMSE
equalizer in OFDM communication using gnuradio.Which part need reconfiguration to implement them?
I use usrp bus series and gnuradio 3.7.0.
With 3.7, it’s quite simple. OFDM signals are equalized using blocks of
type ofdm_frame_equalizer_vcvc. This block doesn’t actually do the
signal processing; instead, you drop in an instance of a
ofdm_equalizer_base class.
So all you need to do is derive from ofdm_equalizer_base and pass it to
ofdm_frame_equalizer_vcvc.
Of course, in a practical system, you have two components for your
equalization: The channel estimation and the actual equalization.
You probably need to work on both. However, if you stick to the current
OFDM frame structure, you will get an initial estimate of the channel.
If you have a static channel, zero forcing will work out of the box with
the available equalizers.
For MMSE, you will need a way to estimate the SNR inside the equalizer.
IIRC, you need the symbol alphabet for that. Simply make it an argument
for the equalizer class.
If you finish a working MMSE implementation, I’d love to see the code.
Cheers,
MB
–
Karlsruhe Institute of Technology (KIT)
Communications Engineering Lab (CEL)
Dipl.-Ing. Martin B.
Research Associate
Kaiserstraße 12
Building 05.01
76131 Karlsruhe
Phone: +49 721 608-43790
Fax: +49 721 608-46071
www.cel.kit.edu
KIT – University of the State of Baden-Württemberg and
National Laboratory of the Helmholtz Association
Thanks Martin,
your information very helpful.
for current, what is equalizer which used on gnuradio 3.7 ?
from gnuradio 3.7 API there are three equalizer. cma, kurtotic and lms
equalizer.
what is equalizer which used?
Thanks,
Zai
From: Martin B. (CEL) [email protected]
To: [email protected]
Sent: Tuesday, August 13, 2013 3:11 PM
Subject: Re: [Discuss-gnuradio] Zero Forcing (ZF) and MMSE Equalizer
On Tue, Aug 13, 2013 at 02:21:43PM +0800, ZaInzAiN Jj wrote:
Hi all,
I am new to gnuradio and I want to implement Zero Forcing (ZF) and MMSE
equalizer in OFDM communication using gnuradio.Which part need reconfiguration to implement them?
I use usrp bus series and gnuradio 3.7.0.
With 3.7, it’s quite simple. OFDM signals are equalized using blocks of
type ofdm_frame_equalizer_vcvc. This block doesn’t actually do the
signal processing; instead, you drop in an instance of a
ofdm_equalizer_base class.
So all you need to do is derive from ofdm_equalizer_base and pass it to
ofdm_frame_equalizer_vcvc.
Of course, in a practical system, you have two components for your
equalization: The channel estimation and the actual equalization.
You probably need to work on both. However, if you stick to the current
OFDM frame structure, you will get an initial estimate of the channel.
If you have a static channel, zero forcing will work out of the box with
the available equalizers.
For MMSE, you will need a way to estimate the SNR inside the equalizer.
IIRC, you need the symbol alphabet for that. Simply make it an argument
for the equalizer class.
If you finish a working MMSE implementation, I’d love to see the code.
Cheers,
MB
–
Karlsruhe Institute of Technology (KIT)
Communications Engineering Lab (CEL)
Dipl.-Ing. Martin B.
Research Associate
Kaiserstrae 12
Building 05.01
76131 Karlsruhe
Phone: +49 721 608-43790
Fax: +49 721 608-46071
www.cel.kit.edu
KIT – University of the State of Baden-Wrttemberg and
National Laboratory of the Helmholtz Association
On Tue, Aug 13, 2013 at 5:31 AM, ZaInzAiN Jj [email protected]
wrote:
Zai
Those equalizers are designed for narrowband (or non multi carrier)
systems and are not (necessarily or directly) appropriate for OFDM.
Best look at the OFDM receiver (gr-digital/examples/ofdm/rx_ofdm.grc)
for the equalizer structure used there.
–
Tom
Visit us at GRCon13 Oct. 1 - 4
http://www.trondeau.com/grcon13
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs