Pathloss and distance for each ray #380
Replies: 3 comments 6 replies
-
|
Hello @fightingsoul042, Does the following discussion help compute the quantities you need? ➡️ #360 |
Beta Was this translation helpful? Give feedback.
-
|
Hi @fightingsoul042, Actually, |
Beta Was this translation helpful? Give feedback.
-
|
I’m using Sionna RT with scenes loaded from XML (large outdoor / UTM-scale scenes). Calling scene.preview() does not show any visualization. I found that manually placing a camera using the scene bounding box works: bbox = scene.mi_scene.bbox()
center = 0.5 * (bbox.min + bbox.max)
from sionna.rt import Camera
cam = Camera(
position=[center[0], center[1] - 500, center[2] + 300],
look_at=center
)
scene.render(camera=cam)This renders the scene correctly. My questions are: Is this the recommended / intended way to preview RT scenes when scene.preview() fails? Is there a scene-independent utility (or best practice) for automatically positioning a camera based on the scene extent? After computing paths with PathSolver, is it safe to reuse the same camera to preview the scene again (optionally with rays using scene.render(camera=cam, paths=paths))? Are there known limitations of scene.preview() for large scenes, merged shapes, or XML-loaded environments? Any guidance or official recommendations would be appreciated. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I wanted to ask is it possible to get the pathloss and propagation distance for each ray. Like in the following example from matlab
https://se.mathworks.com/help/comm/ug/indoor-mimo-ofdm-communication-link-using-ray-tracing.html
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions