Ray Tracing tx Pattern routes

9 次查看(过去 30 天)
Stavros Tsimpoukis
Stavros Tsimpoukis 2023-11-23
回答: Rangesh 2023-11-30
Hello everyone, I am running a ray-tracing problem and I notice something that seems strange to me. I am running the same 3D ray-tracing geometry problem we different transmitter antennas.
What seems odd is that for every antenna the results of the ray-tracing (i.e. comm.Ray objects ) are the same no matter what txsite is being used.
By also checking on the rays returned by the "raytrace" function it seems that the rays are the same.
Especially in the case of the last example ( right image ) the radiation pattern is a "pyramidical" one with no directivity towards the rx_sites positions. Although that is the case LoS rays are reaching the receivers.
Does anyone know why is that happening ?
Here is also some of the code used.
% creation of transmitter site
tx = txsite("cartesian", ...
"AntennaPosition",tx_pos, ...
"TransmitterFrequency",fc,...
"Antenna",tx_antenna,...
"TransmitterPower",0.001);
tx.AntennaAngle = tx_angles; % azimuth and elevation angles in order for the antenna to "look" at specified point
show(tx,"ShowAntennaHeight",false)
% creation of the propagation model
pm = propagationModel("raytracing", ...
"CoordinateSystem","cartesian", ...
"Method","sbr", ...
"AngularSeparation","medium",...
"MaxNumReflections",3 + maxReflections, ...
"MaxNumDiffractions",1,...
"SurfaceMaterial","perfect-reflector");
rays = raytrace(tx,rx,pm);
Thank you in advance

回答(1 个)

Rangesh
Rangesh 2023-11-30
Hi Stavros,
I understand that you want to comprehend the reason behind having the same ray tracing for different locations of the transmit antennas.
It seems that there might be an issue with the antenna configuration not being correctly applied for the transmitter in the ray-tracing simulation. I recommend checking the antenna settings and ensuring that they are correctly associated with each transmitter.
To better understand the issue, it would be beneficial to provide the complete code so that I can assist you more effectively.
For further understanding on ray tracing follow this link.
I hope this resolves your query.
Thanks,
Rangesh.

类别

Help CenterFile Exchange 中查找有关 RF Propagation 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by