码迷,mamicode.com
首页 > 其他好文 > 详细

LTE - Model HARQ Indicator and PHICH

时间:2020-08-13 12:11:36      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:load   cep   lex   you   bin   use   Dimension   loading   lis   

This example shows how to implement the HARQ Indicator (HI) and physical HI channel (PHICH). You create the processing chain of coding hybrid indicator values, create the PHICH, and map it to a resource grid.

Set up the cell-wide settings. 

enb.NDLRB = 9;
enb.CyclicPrefix = ‘Normal‘;
enb.PHICHDuration = ‘Normal‘;
enb.Ng = ‘Sixth‘;
enb.CellRefP = 4;
enb.NCellID = 1;
enb.NSubframe = 0;
enb.DuplexMode = ‘FDD‘;

To generate PHICH resource information, use the ltePHICHInfo function.

phichInfo = ltePHICHInfo(enb);

技术图片

 

 Generate the HARQ indicator (HI) set. An HI set consists of a HARQ indicator value, 1 for ACK and 0 for NACK, and a PHICH index pair that contains the PHICH group index, n

groupPHICH, and the orthogonal sequence index, nseqPHICH, for the PHICH containing HI. The values of ngroupPHICH and nseqPHICH can be determined using the PHICH resource dimension information returned by theltePHICHInfo function. The number of groups determines acceptable values of the PHICH group index and the number of sequences determines acceptable values of sequence indexes.

HISet = [[0 0 1];[0 1 0];[0 4 0];[0 7 1]];
技术图片

 

 Generate the PHICH complex symbols from the cell-wide settings configuration and HARQ indicator matrix. To perform the required channel coding, modulation, scrambling, layer mapping, precoding, and combining of the PHICH groups, call the ltePHICH function.

phichSymbols = ltePHICH(enb,HISet);
disp(phichSymbols)

0.0000 + 0.0000i 0.0000 + 0.0000i -2.0000 + 0.0000i 0.0000 + 0.0000i 2.0000 + 0.0000i 0.0000 + 0.0000i 0.0000 + 0.0000i 0.0000 + 0.0000i 1.0000 - 1.0000i 0.0000 + 0.0000i 1.0000 - 1.0000i 0.0000 + 0.0000i -1.0000 - 1.0000i 0.0000 + 0.0000i 1.0000 + 1.0000i 0.0000 + 0.0000i 0.0000 + 0.0000i 0.0000 + 0.0000i 0.0000 + 0.0000i 2.0000 + 0.0000i 0.0000 + 0.0000i -2.0000 + 0.0000i 0.0000 + 0.0000i 0.0000 + 0.0000i 0.0000 + 0.0000i -1.0000 + 1.0000i 0.0000 + 0.0000i 1.0000 - 1.0000i 0.0000 + 0.0000i -1.0000 - 1.0000i 0.0000 + 0.0000i -1.0000 - 1.0000i 0.0000 + 0.0000i 0.0000 + 0.0000i -2.0000 + 0.0000i 0.0000 + 0.0000i 2.0000 + 0.0000i 0.0000 + 0.0000i 0.0000 + 0.0000i 0.0000 + 0.0000i -1.0000 + 1.0000i 0.0000 + 0.0000i 1.0000 - 1.0000i 0.0000 + 0.0000i -1.0000 - 1.0000i 0.0000 + 0.0000i -1.0000 - 1.0000i 0.0000 + 0.0000i

The resulting vector, phichSymbols, has 12 rows and four columns. Each column contains the complex symbols to be mapped to the resource grids for each of the four antenna ports.

To generate the PHICH mapping indices, use the ltePHICHIndices function. These mapping indices are required to map the complex PHICH symbols to the subframe resource grid.

phichIndices = ltePHICHIndices(enb);
disp(phichIndices)
     13   1525   3037   4549
     15   1527   3039   4551
     16   1528   3040   4552
     18   1530   3042   4554
     43   1555   3067   4579
     45   1557   3069   4581
     46   1558   3070   4582
     48   1560   3072   4584
     79   1591   3103   4615
     81   1593   3105   4617
     82   1594   3106   4618
     84   1596   3108   4620

This function returns a matrix with four columns, one for each antenna port. The rows contain the indices in linear form for mapping the PHICH symbols to the subframe resource grid.

To generate a subframe resource grid, use the lteDLResourceGrid function. This function creates an empty resource grid for one subframe.

subframe = lteDLResourceGrid(enb);
disp(size(subframe))
   108    14     4

Map the complex PHICH symbols to the resource grid by assigning phichSymbols to the phichIndices locations in subframe.

subframe(phichIndices) = phichSymbols;


Reference,
  1.MathWorks

StructureElementNREGNRENPHICHNGroupsNMappingUnitsNSequencesPHICHDurationDescriptionNumberofresourceelementgroupsusedtomapthePHICHs.NumberofresourceelementsusedtomapthePHICHs.MaximumnumberofPHICHthatcanbeused.MaximumnumberofPHICHgroupsthatcanbeused.NumberofPHICHmappingunitsusedtomapthemaximumnumberofPHICHgroups.Maximumnumberoforthogonalsequencesthatcanbeusedwithineachgroup.NumberofOFDMsymbolsusedtomapthePHICH.Value31281181

LTE - Model HARQ Indicator and PHICH

标签:load   cep   lex   you   bin   use   Dimension   loading   lis   

原文地址:https://www.cnblogs.com/zzyzz/p/13492916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!