5G New Radio Polar Coding: trying to replicate pictures of MATLAB example

41 visualizaciones (últimos 30 días)
Hi,
I am trying to replicate result of this matlab Example 5G New Radio Polar Coding. I have looped over different SNR to get BLER, but when I set number of frames to 10k it always gives me BLER of 1.
I will provide complete code:
%% 5G New Radio Polar Coding
%
% This example highlights the new polar channel coding technique chosen for
% 5G New Radio (NR) communications system. Of the two main types of code
% constructions specified by 3GPP, this example models the CRC-Aided Polar
% (CA-Polar) coding scheme. This example describes the main components of
% the polar coding scheme with individual components for code construction,
% encoding and decoding along-with rate-matching. It models a polar-coded
% QPSK-modulated link over AWGN and presents Block-Error-Rate results for
% different message lengths and code rates for the coding scheme.
% Copyright 2018-2021 The MathWorks, Inc.
%% Introduction
%
% The selection of polar codes as the channel coding technique for control
% channels for 5G NR communications system has proven the merits of
% Arikan's [ <#10 1> ] discovery and will establish their application in
% commercial systems [ <#10 6> ]. Based on the concept of channel
% polarization, this new coding family is capacity achieving as opposed to
% just capacity approaching. With better or comparable performance than
% LDPC and turbo codes, it supersedes the tail-biting convolutional codes
% used in LTE systems for control channels. It is applied for downlink and
% uplink control information (DCI/UCI) for the enhanced mobile broadband
% (eMBB) use case, as well as the broadcast channel (BCH). Alternatively,
% the channel coding scheme for data channels for eMBB is specified to be
% flexible LDPC for all block sizes.
%
% This example highlights the components to enable a polar coding downlink
% simulation using QPSK modulation over an AWGN channel. In the following
% sections, the individual polar coding components are further detailed.
clear;
s = rng(100); % Seed the RNG for repeatability
%%
% Specify the code parameters used for a simulation.
% Code parameters
K = 54; % Message length in bits, including CRC, K > 30
E = 124; % Rate matched output length, E <= 8192
EbNo = -10:1:10; % EbNo in dB
L = 8; % List length, a power of two, [1 2 4 8]
numFrames = 10e3; % Number of frames to simulate
linkDir = 'UL'; % Link direction: downlink ('DL') OR uplink ('UL')
%% Polar Encoding
%
% The following schematic details the transmit-end processing for the
% downlink, with relevant components and their parameters highlighted.
%
% <<../nr5gDLPolarCoding.png>>
%
% For the downlink, the input bits are interleaved prior to polar encoding.
% The CRC bits appended at the end of the information bits are thus
% distributed for the CA-Polar scheme. This interleaving is not specified
% for the uplink.
%
% The polar encoding uses an SNR-independent method where the reliability
% of each subchannel is computed offline and the ordered sequence stored
% for a maximum code length [ <#10 6> ]. The nested property of polar codes
% allows this sequence to be used for any code rate and all code lengths
% smaller than the maximum code length.
%
% This sequence is computed for given rate-matched output length, |E|, and
% information length, |K|, by the function
% <docid:5g_ref#mw_function_nrPolarEncode nrPolarEncode>, which implements
% the non-systematic encoding of the input |K| bits.
if strcmpi(linkDir,'DL')
% Downlink scenario (K >= 36, including CRC bits)
crcLen = 24; % Number of CRC bits for DL, Section 5.1, [6]
poly = '24C'; % CRC polynomial
nPC = 0; % Number of parity check bits, Section 5.3.1.2, [6]
nMax = 9; % Maximum value of n, for 2^n, Section 7.3.3, [6]
iIL = true; % Interleave input, Section 5.3.1.1, [6]
iBIL = false; % Interleave coded bits, Section 5.4.1.3, [6]
else
% Uplink scenario (K > 30, including CRC bits)
crcLen = 11;
poly = '11';
nPC = 0;
nMax = 10;
iIL = false;
iBIL = true;
end
%%
% The following schematic details the transmit-end processing for the
% uplink, for a payload size greater than |19| bits and no code-block
% segmentation, with relevant components and their parameters highlighted.
%
% <<../nr5gULPolarCoding.png>>
%
%% Rate Matching and Rate Recovery
%
% The polar encoded set of bits (|N|) are rate-matched to output the
% specified number of bits (|E|) for resource element mapping [ <#10 7> ].
% The coded bits are sub-block interleaved and passed to a circular buffer
% of length |N|. Depending on the desired code rate and selected values of
% |K|, |E|, and |N|, either of repetition (|E >= N|), and puncturing or
% shortening (|E < N|) is realized by reading the output bits from the
% buffer.
%
% * For puncturing, |E| bits are taken from the end
% * For shortening, |E| bits are taken from the start
% * For repetition, |E| bits are repeated modulo |N|.
%
% For the downlink, the selected bits are passed on to the modulation
% mapper, while for the uplink, they are further interleaved prior to
% mapping. The rate-matching processing is implemented by the function
% <docid:5g_ref#mw_function_nrRateMatchPolar nrRateMatchPolar>.
%
% At the receiver end, rate recovery is accomplished for each of the cases
%
% * For puncturing, corresponding LLRs for the bits removed are set to zero
% * For shortening, corresponding LLRs for the bits removed are set to a
% large value
% * For repetition, the set of LLRs corresponding to first |N| bits are
% selected.
%
% The rate-recovery processing is implemented by the function
% <docid:5g_ref#mw_function_nrRateRecoverPolar nrRateRecoverPolar>.
R = K/E; % Effective code rate
bps = 2; % bits per symbol, 1 for BPSK, 2 for QPSK
EsNo = EbNo + 10*log10(bps);
snrdB = EsNo + 10*log10(R); % in dB
noiseVar = 1./(10.^(snrdB/10));
% Channel
%% Polar Decoding
%
% The implicit CRC encoding of the downlink (DCI or BCH) or uplink (UCI)
% message bits dictates the use of the CRC-Aided Successive Cancellation
% List Decoding (CA-SCL) [ <#10 3> ] as the channel decoder algorithm. It
% is well known that CA-SCL decoding can outperform turbo or LDPC codes
% [ <#10 4> ] and this was one of the major factors in the adoption of
% polar codes by 3GPP.
%
% Tal & Vardy [ <#10 2> ] describe the SCL decoding algorithm in terms of
% likelihoods (probabilities). However, due to underflow, the inherent
% computations are numerically unstable. To overcome this issue, Stimming
% et.al. [ <#10 5> ] offer the SCL decoding solely in the log-likelihood
% ratio (LLR) domain. The list decoding is characterized by the |L|
% parameter, which represents the number of most likely decoding paths
% retained. At the end of the decoding, the most likely code-path among the
% |L| paths is the decoder output. As |L| is increased, the decoder
% performance also improves, however, with a diminishing-returns effect.
%
% For an input message which is concatenated with a CRC, CA-SCL decoding
% prunes out any of the paths for which the CRC is invalid, if at least one
% path has the correct CRC. This additional insight in the final path
% selection improves the performance further, when compared to SCL
% decoding. For the downlink, a CRC of 24 bits is used, while for the
% uplink CRCs of 6 and 11 bits are specified, which vary on the value of
% |K|.
%
% The decoder is implemented by the function
% <docid:5g_ref#mw_function_nrPolarDecode nrPolarDecode>, which supports
% all three CRC lengths. The decoder function also accounts for the
% input bit interleaving specified at the transmitter for the downlink,
% prior to outputting the decoded bits.
% Error meter
%
%% Frame Processing Loop
%
% This section shows how the prior described components for polar coding
% are used in a Block Error Rate (BLER) simulation. The simulation link is
% highlighted in the following schematic.
%
% <<../nr5gPolar.png>>
%
% For each frame processed, the following steps are performed:
%
% * |K-crcLen| random bits are generated,
% * A CRC is computed and appended to these bits
% * The CRC appended bits are polar encoded to the mother code block length
% * Rate-matching is performed to transmit |E| bits
% * The |E| bits are QPSK modulated
% * White Gaussian Noise of specified power is added
% * The noisy signal is soft QPSK demodulated to output LLR values
% * Rate recovery is performed accounting for either of puncturing,
% shortening or repetition
% * The recovered LLR values are polar decoded using the CA-SCL algorithm,
% including deinterleaving.
% * Off the decoded |K| bits, the first |K-crcLen| bits are compared with
% those transmitted to update the BLER and bit-error-rate (BER) metrics.
%
% At the end of the simulation, the two performance indicators, BLER and
% BER, are reported.
BLER = zeros(1,length(noiseVar));
for j = 1:length(noiseVar)
numferr = 0;
chan = comm.AWGNChannel('NoiseMethod','Variance','Variance',noiseVar(j));
ber = comm.ErrorRate;
for i = 1:numFrames
% Generate a random message
msg = randi([0 1],K-crcLen,1);
% Attach CRC
msgcrc = nrCRCEncode(msg,poly);
% Polar encode
encOut = nrPolarEncode(msgcrc,E,nMax,iIL);
N = length(encOut);
% Rate match
modIn = nrRateMatchPolar(encOut,K,E,iBIL);
% Modulate
modOut = nrSymbolModulate(modIn,'QPSK');
% Add White Gaussian noise
rSig = chan(modOut);
% Soft demodulate
rxLLR = nrSymbolDemodulate(rSig,'QPSK',noiseVar(j));
% Rate recover
decIn = nrRateRecoverPolar(rxLLR,K,N,iBIL);
% Polar decode
decBits = nrPolarDecode(decIn,K,E,L,nMax,iIL,crcLen);
% Compare msg and decoded bits
errStats = ber(double(decBits(1:K-crcLen)), msg);
numferr = numferr + any(decBits(1:K-crcLen)~=msg);
ber.reset;
end
BLER(j) = numferr/numFrames;
disp(['Block Error Rate: ' num2str(numferr/numFrames) ...
', Bit Error Rate: ' num2str(errStats(1)) ...
', at SNR = ' num2str(snrdB(j)) ' dB'])
rng(s); % Restore RNG
end
%{
numferr = 0;
for i = 1:numFrames
if(numferr >= 1000) break;
end
% Generate a random message
msg = randi([0 1],K-crcLen,1);
% Attach CRC
msgcrc = nrCRCEncode(msg,poly);
% Polar encode
encOut = nrPolarEncode(msgcrc,E,nMax,iIL);
N = length(encOut);
% Rate match
modIn = nrRateMatchPolar(encOut,K,E,iBIL);
% Modulate
modOut = nrSymbolModulate(modIn,'QPSK');
% Add White Gaussian noise
rSig = chan(modOut);
% Soft demodulate
rxLLR = nrSymbolDemodulate(rSig,'QPSK',noiseVar);
% Rate recover
decIn = nrRateRecoverPolar(rxLLR,K,N,iBIL);
% Polar decode
decBits = nrPolarDecode(decIn,K,E,L,nMax,iIL,crcLen);
% Compare msg and decoded bits
errStats = ber(double(decBits(1:K-crcLen)), msg);
numferr = numferr + any(decBits(1:K-crcLen)~=msg);
end
disp(['Block Error Rate: ' num2str(numferr/numFrames) ...
', Bit Error Rate: ' num2str(errStats(1)) ...
', at SNR = ' num2str(snrdB) ' dB'])
%}
%% Results
%
% To get meaningful results, simulations have to be run for a longer
% duration. Using scripts which encapsulate the above processing into a
% function that supports C-code generation, the following results for
% different code rates and message lengths are presented for both link
% directions with QPSK modulation.
%
% <<../nr5gPolarL8DL.png>>
%
% <<../nr5gPolarL8UL.png>>
%
% The above results were generated by simulating, for each SNR point, up to
% 1000 frame errors or a maximum of 100e3 frames, whichever occurred first.
%
% The BLER performance results indicate the suitability of polar codes in
% a communication link and their implicit support for rate-compatibility at
% the bit-level granularity.
%
% The use of C-code generation tools for the components reduces the
% execution time, a key concern for simulations. The C-code generation is
% enabled by MATLAB Coder(TM).
%% Summary and Further Exploration
%
% This example highlights one of the polar coding schemes (CRC-Aided Polar)
% specified by 3GPP for New Radio control channel information (DCI, UCI)
% and broadcast channel (BCH). It shows the use of components for all
% stages of the processing (encoding, rate-matching, rate-recovery and
% decoding) and uses them in a link with QPSK over an AWGN channel.
% Highlighted performance results for different code rates and message
% lengths show agreement to published trends, within parametric and
% simulation assumption variations.
%
% Explore simple parameter variations (|K|, |E|, |L|) and their effect on
% BLER performance. The polar coding functions are implemented as open
% MATLAB(R) code to enable their application for both downlink/uplink
% control information and broadcast channel. The CA-Polar scheme is
% applicable for both
%
% * Downlink, for all message lengths, and
% * Uplink, for |K > 30|, with |crcLen = 11|, |nPC = 0|, |nMax = 10|, |iIL
% = false|, and |iBIL = true|.
%
% Refer to <docid:5g_gs#mw_85486201-d503-4cf5-a740-0e77ba4f8659 Modeling
% Downlink Control Information> and
% <docid:5g_ug#mw_a4db8282-8f25-4802-8b02-548bab69b7dd NR Cell Search and
% MIB and SIB1 Recovery> examples, for the
% use of polar coding functions within the DCI and BCH functions
% respectively.
%
% The highlighted polar coding functions also support the Parity-Check
% polar coding construction and encoding. This is applicable for the uplink
% with UCI payloads in range |18 <= K <= 25|. This is supported by the
% uplink control coding functions |nrUCIEncode| and |nrUCIDecode|, which
% include code-block segmentation as well for appropriate values of |K| and
% |E|.
%% Selected References
% # Arikan, E., "Channel Polarization: A Method for constructing
% Capacity-Achieving Codes for Symmetric Binary-Input Memoryless Channels,"
% IEEE Transactions on Information Theory, vol. 55, No. 7, pp. 3051-3073,
% July 2009.
% # Tal, I, and Vardy, A., "List decoding of Polar Codes", IEEE
% Transactions on Information Theory, vol. 61, No. 5, pp. 2213-2226, May
% 2015.
% # Niu, K., and Chen, K., "CRC-Aided Decoding of Polar Codes," IEEE
% Communications Letters, vol. 16, No. 10, pp. 1668-1671, Oct. 2012.
% # Niu, K., Chen, K., and Lin, J.R., "Beyond turbo codes: rate compatible
% punctured polar codes", IEEE International Conference on Communications,
% pp. 3423-3427, 2013.
% # Stimming, A. B., Parizi, M. B., and Burg, A., "LLR-Based Successive
% Cancellation List Decoding of Polar Codes", IEEE Transaction on Signal
% Processing, vol. 63, No. 19, pp.5165-5179, 2015.
% # 3GPP TS 38.212. "NR; Multiplexing and channel coding" 3rd Generation
% Partnership Project; Technical Specification Group Radio Access Network.
% # R1-1711729. "WF on circular buffer of Polar Code", 3GPP TSG RAN WG1
% meeting NR Ad-Hoc#2, Ericsson, Qualcomm, MediaTek, LGE. June 2017.

Respuestas (1)

Saurav
Saurav el 20 de Ag. de 2024
At low SNR values such as -10.6 dB, -9.6 dB, and -8.6 dB, the Block Error Rate (BLER) is consistently 1. This is because these low SNR values correspond to high noise levels, which significantly degrade decoding performance. As a result, all frames are being decoded incorrectly.
To obtain meaningful results, it's important to extend the SNR range to include higher values where the impact of noise is reduced. This will allow you to observe a decrease in BLER as the SNR increases.
The provided code is functioning correctly; the observed issue is primarily due to not visualizing the complete SNR range specified in the code. By examining the full range of SNR values, you will gain a comprehensive view of the simulation's performance.
Below, I am attaching the Command Window output for the complete SNR range specified in the code:
Let me know if this helps!

Categorías

Más información sobre RMC and Conformance en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by