Bugzilla – Bug 2988
Wrong L3 filtering formula used for UL power control
Last modified: 2018-09-07 08:18:45 UTC
Hi, In LteUePowerControl::SetRsrp function the formula used to apply L3 filtering is incorrect. The code is the following: m_rsrp = coeff * m_rsrp + (1 - coeff) * value; As per the formula mentioned in the standard and in ns-3 documentation (https://www.nsnam.org/docs/models/html/lte-design.html#performing-measurements) it should be: m_rsrp = coeff * value + (1 - coeff) * m_rsrp; Moreover, a hard-coded coeff = 0.7 is used for L3 filtering. I think we should use the same coefficient value as in UE RRC, which is sent by an eNB in RRC connection reconfiguration message. Kind regards, Zoraze
Created attachment 3179 [details] Initial patch Attached is the initial patch.
Regarding formula OK. Regarding filtering, I would prefer that Marco or someone of the original authors confirms.
We already had a discussion, I'm fine with the patch.
Pushed to changeset 13797:c44705634f6f