Electronic – Regarding OFDM (Orthogonal Frequency Division multiplexing)

multiplexer

Could you please briefly explain the IEEE 802.11a OFDM packet structure? In particular,

  1. What is meant by "symbol" here?

  2. What is the purpose of the packet preamble?

  3. What is a "short training symbol" and what is its purpose?

  4. What is a "long training symbol" and what is its purpose?

  5. What is a "signal field" and what is its purpose?

Why are we using 52 sub carriers in a weird way? I have searched a lot but nowhere could I find some basics. Could you please explain it properly?

Best Answer

Preambles are known patterns that allow for easy synchronization. Preambles are used in signal processing as markers to help synchronize the hardware and software to the incoming data stream which is often too random to find patterns in. Here's an 802.11 wlan frame.

packet

In real time: real time

The 10 repetitions of the short preamble give the receiver hardware time to adjust. During this time signal detection, AGC converges, timing acquisition and frequency acquisition is done.

The two long preambles (with a guard interval before it) are used for channel estimation and finer frequency adjustments before the data can be processed.

The third region of the frame is the Signal field, which consists of one OFDM symbol assigned to all 52 subcarriers. This symbol is BPSK modulated at 6 Mbps and is encoded at a ½ rate. The signal field is used to indicate the rate at which the OFDM symbols of the PSDU payload are transmitted and is not scrambled.

OFDM uses multiple carriers to spread the data out across the frequency band. This helps reduce problems with signal fading, multi-path and narrow band interference.

Further introductory information can be found here.