Unipisa / Simu5G

Simu5G - 5G NR and LTE/LTE-A user-plane simulation model for OMNeT++ & INET
https://simu5g.org
Other
146 stars 83 forks source link

Simu5G user measurement report used for handover #92

Closed eliehaber90 closed 1 year ago

eliehaber90 commented 1 year ago

Hi,

I understand Simu5G uses the SINR value to trigger the handover procedure. However, I want to ask why the RSRP and RSRQ values are not simulated and used instead. And how difficult is it if I want to add those calculations myself in Simu5G?

Thank you

giovanninardini commented 1 year ago

Hi,

sorry for the delay. Using SINR to trigger the handover was just our design choice. Actually, the getSINR function used to compute the SINR internally computes the RSRP first, then it "adds" noise and interference. The LteRealisticChannelModel also provides a function called getRsrp(), maybe that can help you.

Best regards. Giovanni

eliehaber90 commented 1 year ago

Ok thanks for the information.