Simulated Drop¶

Simulated drops are the result of a single MonteCarlo simulation iteration within HermesPy. They contain all of the information generated by simulated devices as well as their estimated receptions.
- class SimulatedDrop(timestamp, device_transmissions, channel_realizations, device_receptions)[source]¶
Bases:
Drop
[SimulatedDeviceTransmission
,SimulatedDeviceReception
]Drop containing all information generated during a simulated wireless scenario transmission, channel propagation and reception.
- Parameters:
timestamp (
float
) – Time at which the drop was generated.device_transmissions (
Sequence
[SimulatedDeviceTransmission
]) – Transmitted device information.channel_realizations (
Sequence
[ChannelRealization
]) – Matrix of channel realizations linking the simulated devices.device_receptions (
Sequence
[SimulatedDeviceReception
]) – Received device information.
- classmethod Deserialize(process)[source]¶
Deserialize an object’s state.
Objects cannot be deserialized directly, instead a
Factory
must be instructed to carry out the deserialization process.- Parameters:
process (
DeserializationProcess
) – The current stage of the deserialization process. This object is generated by theFactory
and provides an interface to deserialization methods supporting multiple backends.- Return type:
- Returns:
The deserialized object.
- serialize(process)[source]¶
Serialize this object’s state.
Objects cannot be serialized directly, instead a
Factory
must be instructed to carry out the serialization process.- Parameters:
process (
SerializationProcess
) – The current stage of the serialization process. This object is generated by theFactory
and provides an interface to serialization methods supporting multiple backends.- Return type:
- property channel_realizations: Sequence[ChannelRealization]¶
Squence of channel realizations linking the simulated devices.