Replies: 1 comment
-
Hi @mlouielu , If you place the RX in front of the TX along the X-axis, and assuming that both radio devices have an orientation of |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Consider the following monostatic radar/unidirectional antenna pattern/vertical polarization/scattering reflection case:
If we ignore the offset (y=0.05) between TX/RX, then the incident and scatter vector will be
ki=[1, 0, 0]
,ko=[-1, 0, 0]
, as shown in the figure.In field_calculator.py, we calculate the receive antenna pattern as the following:
https://github.com/NVlabs/sionna-rt/blob/f3a944cbb7b4945975fad21353413b3b7c8a477e/src/sionna/rt/path_solvers/field_calculator.py#L326-L330
Consider the following unidirectional pattern:
Then, we calculate the
antenna_pattern_to_world_implicit()
, which will then yield 0 for target pattern:So, even if I put RX in front of the TX (
rx=[0.8, 0, 0]
), and only enable LOS, which still will yieldki=[1,0,0]
,ko=[-1,0,0]
, and give usc_theta = c_phi = 0
.Are my observations correct? Are there any assumption I made it wrong? And is it safe to just mirror the TX antenna pattern and assign to RX antenna? Thanks!
Beta Was this translation helpful? Give feedback.
All reactions