[docs]classSimulatedDrop(Drop[SimulatedDeviceTransmission,SimulatedDeviceReception]):"""Drop containing all information generated during a simulated wireless scenario transmission, channel propagation and reception."""__channel_realizations:Sequence[ChannelRealization]def__init__(self,timestamp:float,device_transmissions:Sequence[SimulatedDeviceTransmission],channel_realizations:Sequence[ChannelRealization],device_receptions:Sequence[SimulatedDeviceReception],)->None:""" Args: timestamp: Time at which the drop was generated. device_transmissions: Transmitted device information. channel_realizations: Matrix of channel realizations linking the simulated devices. device_receptions: Received device information. """# Initialize attributesself.__channel_realizations=channel_realizations# Initialize base classDrop.__init__(self,timestamp,device_transmissions,device_receptions)@propertydefchannel_realizations(self)->Sequence[ChannelRealization]:"""Squence of channel realizations linking the simulated devices."""returnself.__channel_realizations