Impedance Coupling

Inheritance diagram of hermespy.simulation.coupling.impedance.ImpedanceCoupling
class ImpedanceCoupling(device=None, transmit_correlation=None, receive_correlation=None, transmit_impedance=None, receive_impedance=None, matching_impedance=None)[source]

Bases: Coupling

Imedance based mutual coupling model

Parameters:
  • device (SimulatedDevice | None) – Device the model is configured to.

  • transmit_correlation (ndarray | None) – Correlation matrix of the transmit antenna array. Defaults to the identity matrix.

  • receive_correlation (ndarray | None) – Correlation matrix of the receive antenna array. Defaults to the identity matrix.

  • transmit_impedance (ndarray | None) – Impedance matrix of the transmit antenna array. Defaults to the identity matrix.

  • receive_impedance (ndarray | None) – Impedance matrix of the receive antenna array. Defaults to the identity matrix.

  • matching_impedance (ndarray | None) – Impedance matrix of the matching network. Defaults to the identity matrix.

classmethod Deserialize(deserialization_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 – 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:

ImpedanceCoupling

Returns:

The deserialized object.

serialize(serialization_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 – 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 matching_impedance: ndarray | None
property receive_correlation: ndarray
property receive_impedance: ndarray | None
property transmit_correlation: ndarray | None
property transmit_impedance: ndarray | None