フィルターのクリア

Modify number of antennas in NR PDSCH Throughput

2 ビュー (過去 30 日間)
Javier Sola morras
Javier Sola morras 2020 年 4 月 16 日
回答済み: Sriram Tadavarty 2020 年 4 月 27 日
I want to modify the number of antennas to perform the NR PDSCH Throughput simulation. But it is wrong to change only the value of
  • simParameters.NTxAnts = 8;
  • simParameters.NumCW = 2;
  • simParameters.PDSCH.TargetCodeRate = [490 490]./1024;
  • simParameters.PDSCH.Modulation = {'16QAM','16QAM'};
  • simParameters.NRxAnts = 8;

採用された回答

Sriram Tadavarty
Sriram Tadavarty 2020 年 4 月 27 日
Hi Javier,
The one most important aspect is to change is the number of layers. The number of layers decide whether the number of codewords is set to 1 or 2. Though you made your simulation setup to NumCW as 2, if the NumLayers field is less than 4, it doesnt affect.
When the number of layers is greater than 4, there will be two codewords. When the number of layers is less than or equal to 1, there will be single codeword.
So the update required is;
simParameters.PDSCH.NLayers = 5; % Any value greater than 4 and less than or equal to 8, to perform two codewords simulation
Hope this helps.
Regards,
Sriram

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeModeling Basics についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by