Multiple Rx and one Tx in Sionna RT Stream Management #324
-
Hi, I was wondering if Sionna OFDM Stream Management function, supports multiple receivers in a scene with just one Tx. I am asking this, due to the fact that with the following code I do not obtain the indexes of all Rxs, and therefore, most of Here the code: Here the
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi, We'll have a look and come back to you quickly. |
Beta Was this translation helpful? Give feedback.
-
Hi, I had a quick look at your code and there are multiple issues:
Here is a code snippet, that shows the correct setting:
Number of streams per tx: 5
Number of streams per rx: 1
Stream IDs:
[[0 1 2 3 4]]
Number of rx communicating with a tx: 5
Number of interfering streams per rx: 4 |
Beta Was this translation helpful? Give feedback.
Hi,
I had a quick look at your code and there are multiple issues:
You want to have one TX and 5 RX. In this case, you must set
num_streams_per_tx=5
because the TX is sending 5 streams, one for each RX.You cannot send 5 streams with a single TX antenna. The number of streams must be smaller than or equal to the number of TX antennas.
The TX would probably need to apply a form of precoding.
Here is a code snippet, that shows the correct setting: