moerjielovecookie

Sawen_Blog

一个普通工科牲的博客网站
x
github
follow
email

Pulse Shaping Filter

In order for digital signals to be transmitted in a channel, pulse shaping must be performed in the baseband section of the transmitter to convert the digital signal into a pulse signal; after the pulse signal reaches the receiver, the digital signal is restored through sampling decision in the baseband section.

Pulse Shaping#

Rectangular Pulse#

The easiest pulse waveform to implement is the rectangular pulse. Taking the digital signal "00010110" as an example, at the transmitting end, "0" can be mapped to a positive pulse, and "1" can be mapped to a negative pulse. When sampling at the receiving end, if the signal level is positive, it is "0", and if the signal level is negative, it is "1".
|525
However, the frequency spectrum of the rectangular pulse signal is infinitely wide, so distortion occurs during transmission in a channel with limited bandwidth, which may even lead to sampling decision distortion, making it impossible to restore the digital signal.

Sinc Pulse#

The Sinc pulse signal has two advantages:

  • The frequency spectrum bandwidth of the Sinc signal is limited, so there is no distortion when transmitted through a channel with limited bandwidth.
    |500
  • When one symbol reaches its maximum amplitude, the amplitudes of other symbols are exactly 0, meaning that symbols do not interfere with each other, achieving no inter-symbol interference.
    Taking the digital signal 00010110 as an example, 0 is mapped to a positive pulse, and 1 is mapped to a negative pulse.
    The waveform after pulse shaping at the transmitting end is as follows:
    |500
    The sampling decision at the receiving end is as follows:
    |500

Baseband Filter#

Ideal Low-Pass Filter#

To shape the pulse into a sinc waveform, simply input the unit impulse signal into an ideal LPF to obtain the sinc pulse signal.
If the bandwidth of the LPF is B, the output sinc pulse signal waveform is as follows:
|500
As long as the sending interval of the sinc pulse signal is set to $\frac{1}{B}$, which means the symbol transmission rate $R_B=2B$, inter-symbol interference can be achieved.

Raised Cosine Roll-off Filter#

Using an ideal low-pass filter to filter the unit impulse signal results in a sinc pulse signal that has a relatively large tail oscillation amplitude and a slow decay rate. When there is a timing deviation, inter-symbol interference can be significant. Considering that actual systems always have some timing errors, pulse shaping generally does not use an ideal low-pass filter but instead uses a raised cosine roll-off filter. This type of filter has a small tail amplitude and fast decay, which is beneficial for reducing inter-symbol interference and lowering timing requirements.
The frequency response of the raised cosine roll-off filter is:

H(f)={12B,0f<(1α)B14B{1+cosπ2Bα[fB(1α)]},(1α)Bf<(1+α)B0,f(1+α)B\begin{aligned} &\mathrm{H}(f)=\begin{cases}\frac{1}{2B},&0\leqslant\left|f\right|<\left(1-\alpha\right)B\\\frac{1}{4B}\left\{1+\cos\frac{\pi}{2B\alpha}\Big[\left|f\right|-B\left(1-\alpha\right)\right]\Big\},&(1-\alpha)B\leqslant|f|<(1+\alpha)B\\0,&\left|f\right|\geqslant\left(1+\alpha\right)B \\ \end{cases}\end{aligned}

where B=RB2B=\frac{R_B}{2}
The frequency response curve of the raised cosine roll-off filter is as follows:
image
The unit impulse response of the raised cosine roll-off filter is:

h(t)=F1[H(f)]=sinc(2Bt)cos(2παBt)1(4αBt)2\mathrm h(t)=\mathscr{F}^{-1}\big[\mathrm H(f)\big]=\mathrm sinc\big(2Bt\big)\frac{\cos\big(2\pi\alpha Bt\big)}{1-\big(4\alpha Bt\big)^2}

where α\alpha is a very important parameter of the raised cosine roll-off filter, known as the roll-off factor.
When α=0\alpha=0, the raised cosine roll-off filter is an ideal low-pass filter with bandwidth B.
When α=0.5\alpha=0.5, the frequency response and unit impulse response of the raised cosine roll-off filter are as follows:
image
At this time, the bandwidth of the filter is 1+αB=1.5B(1+\alpha)B=1.5B.
When α=1\alpha=1, the frequency response and unit impulse response of the raised cosine roll-off filter are as follows:
image
At this time, the filter bandwidth is 1+αB=2B(1+\alpha)B=2B.
When using the raised cosine roll-off filter for pulse shaping, to achieve no inter-symbol interference, the time interval between pulse signals must be 12B\frac{1}{2B}, that is, the symbol rate is RB=2BR_B=2B.
Since the raised cosine roll-off filter will broaden the bandwidth, under a given symbol rate RBR_B, the frequency spectrum bandwidth of the baseband signal is (1+α)×RB/2(1+\alpha)\times {R_B}/{2}.

Eye Diagram#

The eye diagram can be used to evaluate the inter-symbol interference situation of a system.

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.