- https://www.mathworks.com/help/comm/ref/rfprop.raytracing.html
- https://www.mathworks.com/help/comm/ref/propagationmodel.html#d126e277669
Ray Tracing tx Pattern routes
조회 수: 6 (최근 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
댓글 수: 0
답변 (1개)
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.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Propagation and Channel Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!