What makes path-loss considerations give me a higher BER? #333
Answered
by
jhoydis
anindha-dhar
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
jhoydis
Feb 13, 2024
Replies: 1 comment 5 replies
-
Hi, |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
In this notebook, users are located at different positions within the scene. There are hence very large path loss differences between the positions.
In order to make meaningful BER simulations, one needs to be able to define an SNR. We have assumed that there is perfect power control in place that compensates for the path loss. That is achieved by setting
normalize=True
, i.e., all users see channels with a path loss equal to 0dB.If you now disable the normalization, you can have one user with an 80dB path loss and one user with a 130dB path loss and it will be essentially impossible to decode both correctly as they have a 50dB difference in received signal strength.
There is hence no…