RCS Calculation using Sionna RT by sampling objects with huge amount of rays. #844
Replies: 4 comments 10 replies
-
Hi @tbhunderbird, I'd need a little bit more background to answer your question. Here are some thoughts based on what I understand: This is currently not supported. Rays are shot from the source in directions defined by a Fibonacci lattice on a sphere. Even with 1bn rays, you would not get the resolution that you need at 10km distance. However, it would not be difficult to implement this yourself as a custom PathSolver, where rays are shot toward specific directions. What exactly do you mean by "sample an object"? If you look for specular reflections on the object, this resolution is not needed. If you want to compute diffuse reflections, it probably also does not make sense because the reflected field can be approximated by essentially a single diffuse reflection (see the section on far-wall-approximation from this tutorial) from a surface with the RCS. If your goal is to compute the RCS that you can then use to compute the diffusely reflected field, your problem seems to be more related to obtaining the projected surface of the object w.r.t. the transmitter as well as the scattering pattern. I am not sure that shooting rays with a high resolution is a good approach for this. |
Beta Was this translation helpful? Give feedback.
-
Hi, Thanks for sharing these references. It is still not clear to me what you would like to accomplish. Imagine that your object is a metallic plate. I assume that you are interested in computing the propagation path from TX-Object-RX(=TX). |
Beta Was this translation helpful? Give feedback.
-
What do you want to compute? The scattered field at a specific point or the RCS of the object for a specific incoming and outgoing angle? In any case, this is not what Sionna RT can do out of the box. |
Beta Was this translation helpful? Give feedback.
-
Yes, you can use your custom ScatteringPattern with your custom RadioMaterial. You can change the fibonacci lattice and replace it with any other source of rays. However, as soon as you enable diffuse reflections, it is assumed that every ray gets an equal fraction of solid angle which might not be the case. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Following scenario: Let us assume a transmitter and receiver far away from the objects ~10km with objects being something from 2m up to 200m.
I want the objects to be sampled every 0.003m (in a projected grid towards the sensor) in order to get a good approximation of arbitrary objects with point scatterers in order to calculate the RCS.
How would I approach this using Sionna RT? Or is it not suited for such calculations?
Beta Was this translation helpful? Give feedback.
All reactions