Hi all,
I have implemented an LTE/EPC program and am willing to use a combination of Friis and Nakagami propagation loss models to have both path loss and fading in my simulation since Nakagami propagation loss model is only fast fading and does not take into account the distance between sender and receiver. However, I want to see different behaviors for different distances!!
After reading the previous forum conversations, I found that in Ns3, the propagation loss model is a singly-linked list which allows using more than one propagation loss model. Is it the case in LENA as well?
If so, how should I define a chain of models in the program? I have simply tried the following but it does not work and its result is as same as that of using only Friis.
Ltehelper->SetAttribute (“PathlossModel”, StringValue (“ns3::FriisPropagationLossModel”));
Ltehelper->SetAttribute (“PathlossModel”, StringValue (“ns3::NakagamiPropagationLossModel”));
Thanks in advance for your help,
Narges