-
Hello, I've modelled a scene with one transmitter and one receiver, computed their paths and calculated the ofdm channel with My goal now is to get some information at the transmitter and receiver so that I can calculate a symmetric key at both ends. It doesn't really matter if I get the info from CSI or some pilot signal or something else. Do I need to send something between them before I can access such data? If so how can I do this? Or am I on a completely wrong path? What I also don't understand is that is the h that I calculate with Thanks for any help! Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi Emily, When you compute the CIR between two radio devices via ray tracing, it should not matter which device is the transmitter and which is the receiver. The CIR should be the same. It is therefore not necessary to compute it twice. In practice, none of the radio devices has access to the CIR and will only get an estimate of it, based on pilots sent by the other radio device. To simplify this approach, you could compute the channel frequency response h once using Hope that helps. |
Beta Was this translation helpful? Give feedback.
Hi Emily,
When you compute the CIR between two radio devices via ray tracing, it should not matter which device is the transmitter and which is the receiver. The CIR should be the same. It is therefore not necessary to compute it twice.
In practice, none of the radio devices has access to the CIR and will only get an estimate of it, based on pilots sent by the other radio device. To simplify this approach, you could compute the channel frequency response h once using
cir_to_ofdm_channel()
and then create two noisy versions of it by adding two different random noise vectors to h.Hope that helps.