Question about RIS delay #566
-
Hello, I would like to know how you handle the delay in RIS. I noticed that scene.compute_paths doesn't seem to return the delay for the TX-RIS-RX path. Could you provide some insights on how to address this issue? Thank you! |
Beta Was this translation helpful? Give feedback.
Answered by
jhoydis
Sep 10, 2024
Replies: 1 comment 4 replies
-
Hi @fanyimeng0, Every path computed by |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I can reproduce the bug. There seems to be something wrong in the
paths.cir()
method when the flagcluster_ris_paths
is enabled.You should be able to get the delays for all individual paths by deactivating the flag :
a, tau = paths.cir(cluster_ris_paths=False)
This will be fixed in the next release.