--
You received this message because you are subscribed to the Google Groups "ns-3-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ns-3-users+...@googlegroups.com.
To post to this group, send email to ns-3-...@googlegroups.com.
Visit this group at http://groups.google.com/group/ns-3-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Visit this group at http://groups.google.com/group/ns-3-users.
Hi Marco,Thanks for your time and attention.As you mentioned, I removed ConstantPositionMobilityModel from the program.Regarding mobility, I am willing to have the uenodes fixed. So, I do not want to define any mobility model.Regarding fading model, I thought TraceFadinglossModel (as the only fading model working in lena) and FriisPropagationLossModel are the presumed defaults! Am I wrong?So how can I introduce a fading model?
I tried following two lines of code, no chance!lteHelper->SetAttribute ("PathlossModel", StringValue ("ns3::TwoRayGroundPropagationLossModel"));
lteHelper->SetAttribute ("FadingModel", StringValue ("ns3::TraceFadingLossModel"));Could you please let me know how to define it?
My second question is how to define target error rate in LTE/EPC? I mean, how can I define an error model in a LTE/EPC configuration and change the BER?
Since I had used RandomBoxPositionAllocator which allocates random positions to nodes on a box, I got different results from multiple replications of the simulation and there were just a few fluctuations in some of them. Then, I set a constant distance between UEnode and enbNode. So, MCS fluctuates in both files regularly. To do so, I used GridPositionAllocator as you can see in the following piece of code. Could you please let me know your opinion about that?
MobilityHelper mobility;
mobility.SetPositionAllocator ("ns3::GridPositionAllocator",
"MinX", DoubleValue (0.0),
"MinY", DoubleValue (0.0),
"DeltaX", DoubleValue (1000),
"DeltaY", DoubleValue (0),
"GridWidth", UintegerValue (2),
"LayoutType", StringValue ("RowFirst"));
mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
mobility.Install (ueNodes);
mobility.Install(enbNodes);
In additon, I have still two problems. I would appreciete it if you can help me to implent the following tasks in my program:
1. Scheduling Flow Monitor to get throughput per second
2. Tracing tcp congestion window done for wifi configuration in fifth.cc of ns-3 documentation.
Regards,
Narges