Main Content

Model HARQ Indicator and PHICH

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. Create a structure and specify the cell-wide settings as its fields.

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

Many of the functions used in this example require a subset of the preceding settings specified.

To generate PHICH resource information, use the ltePHICHInfo function.

phichInfo = ltePHICHInfo(enb);

The function returns phichInfo, a structure containing the relevant data required to define PHICH sets. The elements and values of the structure are:

StructureElementDescriptionValueNREGNumberofresourceelementgroupsusedtomapthePHICHs.3NRENumberofresourceelementsusedtomapthePHICHs.12NPHICHMaximumnumberofPHICHthatcanbeused.8NGroupsMaximumnumberofPHICHgroupsthatcanbeused.1NMappingUnitsNumberofPHICHmappingunitsusedtomapthemaximumnumberofPHICHgroups.1NSequencesMaximumnumberoforthogonalsequencesthatcanbeusedwithineachgroup.8PHICHDurationNumberofOFDMsymbolsusedtomapthePHICH.1

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, nPHICHgroup, and the orthogonal sequence index, nPHICHseq, for the PHICH containing HI. The values of nPHICHgroup and nPHICHseq 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]];

In this example, you create one PHICH group containing four PHICHs with the indices:

PHICHGroupIndexPHICHSequenceIndexHARQIndicatorValue001-ACK010-NACK040-NACK071-ACK

In the LTE Toolbox™, a HI set matrix is used to define the HI and PHICH index pair for each HI within the subframe. The HI set matrix defines a single PHICH in terms of nPHICHgroup, nPHICHseq, and the HARQ indicator.

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;

See Also

| | | | | | | | | | | |

Related Topics