Filter löschen
Filter löschen

raytracing channel on matlab

6 Ansichten (letzte 30 Tage)
nicolas pellanda
nicolas pellanda am 12 Jun. 2024
Kommentiert: nicolas pellanda am 13 Jun. 2024
Hello everyone, I am analyzing a real urban environment taken from open street map (like google maps). In this I am looking at multipath propagation through the raytracing model, where I create the multipath channel between transmitters and receiver moving through the comm.RayTracingChannel object. Since I am not providing any signal as an input to the channel, what the channel returns to me is an array in which there are samples that describe the multipath to me. What I would like to know is whether what is returned to me is the impulsive response of the channel, or simply an array of samples describing to me the power trend due to the fading generated by the doppler effect. I think it is this second option, but I would like some confirmation.

Akzeptierte Antwort

Sudarsanan A K
Sudarsanan A K am 13 Jun. 2024
Hi Nicolas,
The array returned to you represents the impulse response of the channel, detailing the time delays and attenuation of multipath components, not directly the power trend due to Doppler fading.
For example,
rtchan = comm.RayTracingChannel(ChannelFiltering=false);
cir = rtchan();
gives you the channel impulse response in the variable "cir".
If you are interested to get the power-delay profile, youd can use this command:
showProfile(rtchan);
Please refer to the documentation for better understanding of the different use-cases with the "comm.RayTracingChannel" System Object:
I hope this helps!
  1 Kommentar
nicolas pellanda
nicolas pellanda am 13 Jun. 2024
Thank you for the answer. But isn't the impulse response of the multipath channel a series of dirac deltas, one for each path, spaced apart according to the arrival time of the signal from that path?
There is also a way to save the power delay profile on some variable? Because it looks very helpfull to me
Thank you!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte


Version

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by