Simulated Drop

Inheritance diagram of hermespy.simulation.drop.SimulatedDrop

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:
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 the Factory and provides an interface to deserialization methods supporting multiple backends.

Return type:

SimulatedDrop

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 the Factory and provides an interface to serialization methods supporting multiple backends.

Return type:

None

property channel_realizations: Sequence[ChannelRealization]

Squence of channel realizations linking the simulated devices.