--
Posting to this group should follow these guidelines https://www.nsnam.org/wiki/Ns-3-users-guidelines-for-posting
---
You received this message because you are subscribed to a topic in the Google Groups "ns-3-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ns-3-users/sV1-pIpkF3w/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ns-3-users+unsubscribe@googlegroups.com.
To post to this group, send email to ns-3-...@googlegroups.com.
Visit this group at https://groups.google.com/group/ns-3-users.
For more options, visit https://groups.google.com/d/optout.
Dear Ali,
Again thanks for your answer and the information that you gave me. I am kind of confused about the type of the RLC. I understand your point when I compare the functions LteRlcAm::DoReportBufferStatus (void), LteRlcTm::DoReportBufferStatus (void) and LteRlcSm::DoReportBufferStatus (void). This is obvious that what I am receiving from my simulation is from Saturated Rlc. But I do not know why and how I can switch between them.
In fact for begining my work (which for that I need to have access to the current queue size for each Frame or each TTI), I chose the lena-simple.cc (or lena-simple-epc.cc) and I chose to transmi a voice data (EpsBearer::GBR_CONV_VOICE which is the default choice) and I chose the PfFfMacScheduler (https://www.nsnam.org/doxygen/pf-ff-mac-scheduler_8cc_source.html) as the scheduler which is the default choice too. And in the function PfFfMacScheduler::UpdateDlRlcBufferInfo I asked it to print the QueueSize variable (m_rlcTransmissionQueueSize). So it printed the out put which is related to the SM RLC in my knowledge.
Thanks Ali for the information and your answer.As I understood NS3 by default for the case without EPC take the SM RLC which as has been mentioned in the tutorial is not a realistic case! so this is why I get 80000 (which means that transmission queue is always full of data to be sent).
Unfortunately, a case like lena-simple is interesting for me which I can define a couple of different radio bearers to be sent from eNB to the UE(s) and compare the evolution of the transmission queue for each data flow based on using different scheduling schemes.I am not that much familiar with applications like Server-Client (which is used in lena-simple-epc and I am learning now about them). I have just a question (maybe the last one), in case you are familiar with the subject, is there any way that I apply a EPS Bearer like "EpsBearer::Qci q = EpsBearer::GBR_CONV_VOICE" in EPC (lena-simple-epc,) ?