Replies: 2 comments 2 replies
-
Hi @salbert83, I'm not exactly sure about your experiment, but you can already simulate the time evolution of channels with Sionna. This is independent of the PUSCH configuration and supports longer sequences. Please see the Time Domain Channel for further details. |
Beta Was this translation helpful? Give feedback.
-
I think this feature is useful, think about that many scenarios in NR needs feedback, not only mentioned HARQ, but also CQI, PMI, SRS, etc., which are important part we want to try in Neural style transceiver, such as AI for Link Adapter schedule, beam management and beamforming weight prediction. these features all require the time evolution channel model, for all these features are need to run channel multi times. and I think time evolution is easy to implement, # Time steps
sample_times = tf.range(num_time_steps, dtype=self.rdtype)\
/sampling_frequency
sample_times = tf.expand_dims(insert_dims(sample_times, 6, 0), -1) TDL use above code to generate sample_times, if we add a timing offset here, and if we can guarantee run channel in the same random seed, time evolution is done. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
For example, if one were to test HARQ processes on a TDL channel, one would need to evolve the channel in time beyond the 14 OFDM symbols used for PUSCH 5G NR. Is there any current effort for this type of enhancement? Thanks!
Beta Was this translation helpful? Give feedback.
All reactions