--
You received this message because you are subscribed to the Google Groups "5G-LENA-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to 5g-lena-user...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/5g-lena-users/99095f4d-8702-49da-9762-8c33a9f38037n%40googlegroups.com.
Hi Sandra,Happy New year!Thank you for your response, it was very helpful!I have 3 quick follow up questions,1. is there a "switch" that can turn on the random traffic model? or would I need to implement the model myself?
2. Part of my research topic also looks into the rural scenarios for the hexagonal grid layout. I see that in the file "hexagonal-grid-scenario-helper.cc", RMa scenario parameters are defined, However in the "cttc-fh-compression.cc" example that I am basing my work on, in the function "RadioNetworkParametersHelper::SetNetworkToNr " seems like only UMa and UMi scenarios are supported. I am a little confused, does the simulator support RMa scenario?
3. I am writing a MATLAB script to plot CDF curves for the SINR and Throughput values, based on the data from "SinrTrace.txt" and "DlRlcStats.txt". I noticed that the Cell ID in those files are all even numbers, for example I have 3 rings, so 57 cells, and they would be numbered 2 ,4, 6,...,114. But in the code "hexagonal-grid-scenario-helper.cc" when they are generated they are labeled as 0~56. I am wondering where did that transition happen, and how do the numbers map to each other?
Many thanks!On Monday, December 28, 2020 at 8:16:15 AM UTC-5 amirasla...@gmail.com wrote:Hi, ZorazeAs you said it is based on the old version, I should update it with the new version. I had done this based on the first version of the 3GPP channel model developed by Tommaso Zugno at the University of Padova.BRAmirOn Monday, December 28, 2020 at 2:07:23 PM UTC+3:30 zora...@gmail.com wrote:Hi Amir,Nice job!! I think your effort could be of interest to many people. I had a look at the code, and my understanding is that it is based on the old code. So, if you could port the latest code and can perform some benchmarking using CPU and GPU, it would be very valuable.Kind regards,Zoraze
--
You received this message because you are subscribed to the Google Groups "5G-LENA-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to 5g-lena-user...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/5g-lena-users/6c93b3cb-d962-46e0-9701-82633f989055n%40googlegroups.com.
The ccId numbering is, for some untrained eyes, weird. But that is because some numbers in the sequence are used to identify the Cell ID. For example, let's consider a scenario in which we split the spectrum into three parts. We have four GNBs, and the numbering will be the following:.. _tab-example-bwp:.. table:: CcId numbering example +------------+------------+---------------+---------------+---------------+
| GNB | Cell ID | CcId for BWP0 | CcId for BWP1 | CcId for BWP2 |
+============+============+===============+===============+===============+
| GNB 0 | 1 | 2 | 3 | 4 |
+------------+------------+---------------+---------------+---------------+
| GNB 1 | 5 | 6 | 7 | 8 |
+------------+------------+---------------+---------------+---------------+
| GNB 2 | 9 | 10 | 11 | 12 |
+------------+------------+---------------+---------------+---------------+
| GNB 3 | 13 | 14 | 15 | 16 |
+------------+------------+---------------+---------------+---------------+
If we would use this as a simulation scenario, the messages that come from the CcId 2, 6, 10, 14, would refer to the same portion of the spectrum. These IDs, internally at the GNB, would be translated into the BWP 0 in all the cases. The BWP 1 will be associated with the CcId 3, 7, 11, 15 (respectively), and everything else comes easily.
To view this discussion on the web, visit https://groups.google.com/d/msgid/5g-lena-users/7d04c3ae-ec0b-4e56-8ad5-bb6c8b686375n%40googlegroups.com.
// Scheduler type
if (radioNetwork == "LTE")
{
nrHelper->SetSchedulerTypeId (TypeId::LookupByName ("ns3::NrMacSchedulerOfdmaPF"));
nrHelper->SetSchedulerAttribute ("DlCtrlSymbols", UintegerValue (1));
}
else // NR
{
nrHelper->SetSchedulerTypeId (TypeId::LookupByName ("ns3::NrMacSchedulerOfdmaPF"));
nrHelper->SetSchedulerAttribute ("DlCtrlSymbols", UintegerValue (1));
}
To view this discussion on the web, visit https://groups.google.com/d/msgid/5g-lena-users/5b596484-2f3e-4a58-875f-3e2edfbc3c1fn%40googlegroups.com.