Skip to content
Discussion options

You must be logged in to vote

Hi @natanzi ,

Your code has several issues that explain what you are observing.

Here is a fixed version:

import mitsuba as mi
import sionna.rt as rt
import os

# mi.set_variant("llvm_ad_mono_polarized") --> Not needed as Sionna RT sets the variant

# Load static walls
scene = rt.load_scene("scene_946.xml", merge_shapes=False)

# TX and RX setup
scene.tx_array = rt.PlanarArray(num_rows=4, num_cols=4, vertical_spacing=0.5, pattern="tr38901", polarization="V")
scene.rx_array = rt.PlanarArray(num_rows=1, num_cols=1, pattern="iso", polarization="V")

scene.add(rt.Transmitter("bs", position=[10, 10, 4.8], orientation=(0, -90, 0)))
scene.add(rt.Receiver("agv_0", position=[10, 10, 0.5]))

# Path …

Replies: 4 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Answer selected by natanzi
Comment options

You must be logged in to vote
1 reply
@merlinND
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants