其他分享
首页 > 其他分享> > LTE - Uplink Waveform Modeling Using SRS and PUCCH

LTE - Uplink Waveform Modeling Using SRS and PUCCH

作者:互联网

Introduction

The SRS configuration is split into 2 parts - UE-specific and cell-specific. The UE-specific part describes the schedule and content of actual SRS transmissions for this UE. The cell-specific part describes the time schedule when any UE in the cell can transmit - the UE-specific schedule must be a subset of this schedule.

In this example the cell-specific SRS configuration has 5ms periodicity with an offset of 0 (signaled by srs.SubframeConfig = 3 as indicated in TS36.211, Table 5.5.3.3-1). The UE-specific SRS configuration has 10ms periodicity with an offset of 0 (signaled by srs.ConfigIdx = 7 as indicated in TS36.213, Table 8.2-1). The cell-specific configuration means that for this cell, two opportunities for SRS transmission exist within each frame, subframes 0 and 5. All UEs in the cell must shorten their Physical Uplink Control Channel (PUCCH) transmissions during these subframes to allow for SRS reception without interference, even if they are not transmitting SRS themselves. The UE-specific configuration means that this UE is configured to generate SRS only in subframe 0. The output shows PUCCH transmission in all 10 subframes, with shortening in subframes 0 and 5, and an SRS transmission in subframe 0.

 

UE Configuration

ue = struct;
ue.NULRB = 15;                  % Number of resource blocks
ue.NCellID = 10;                % Physical layer cell identity
ue.Hopping = 'Off';             % Disable frequency hopping
ue.CyclicPrefixUL = 'Normal';   % Normal cyclic prefix
ue.DuplexMode = 'FDD';          % Frequency Division Duplex (FDD)
ue.NTxAnts = 1;                 % Number of transmit antennas
ue.NFrame = 0;                  % Frame number

PUCCH Configuration

pucch = struct;
% Vector of PUCCH resource indices, one per transmission antenna
pucch.ResourceIdx = 0:ue.NTxAnts-1;
pucch.DeltaShift = 1;               % PUCCH delta shift parameter
pucch.CyclicShifts = 0;             % PUCCH delta offset parameter
pucch.ResourceSize = 0;             % Size of resources allocated to PUCCH

SRS Configuration

srs = struct;
srs.NTxAnts = 1;        % Number of transmit antennas
srs.SubframeConfig = 3; % Cell-specific SRS period = 5ms, offset = 0
srs.BWConfig = 6;       % Cell-specific SRS bandwidth configuration
srs.BW = 0;             % UE-specific SRS bandwidth configuration
srs.HoppingBW = 0;      % SRS frequency hopping configuration
srs.TxComb = 0;         % Even indices for comb transmission
srs.FreqPosition = 0;   % Frequency domain position
srs.ConfigIdx = 7;      % UE-specific SRS period = 10ms, offset = 0
srs.CyclicShift = 0;    % UE-cyclic shift

Subframe Loop

The processing loop generates a subframe at a time. These are all concatenated to create the resource grid for a frame (10 subframes). The loop performs the following operations:

Results

The figure produced shows the number of active subcarriers in each SC-FDMA symbol across the 140 symbols in txGrid. All SC-FDMA symbols contain 12 active subcarriers corresponding to the single resource block bandwidth of the PUCCH except:

 

   Plot the resource grid with the PUCCH at the band edges and the SRS comb transmission in subframe 0.

  

 

Reference

  1. TS 36.211

  2. TS 36.213

  3. MathWorks  

 

 

标签:SRS,UE,specific,Waveform,LTE,PUCCH,ue,srs
来源: https://www.cnblogs.com/zzyzz/p/13339844.html