Error Vector Magnitude¶
Considering two linked modems denoted by \((\alpha)\) and \((\beta)\), with modem \((\alpha)\) transmitting a symbol sequence
and modem \((\beta)\) receiving a decoded symbol sequence
Hermes defines the symbol Error Vector Magnitude (EVM) as the root mean square (RMS) of the difference between the transmitted and received symbols
In practice, the number of symbols \(S\) may differ between transmitter and receiver. In this case, the longer sequence is truncated to the length of the shorter sequence.
The following minimal examples outlines how to configure this evaluator within the context of a simulation campaign:
1# Create a new simulation featuring two devices
2simulation = Simulation()
3device_alpha = simulation.new_device()
4device_beta = simulation.new_device()
5
6# Create a transmitting and receiving modem for each device, respectively
7modem_alpha = TransmittingModem(device=device_alpha)
8modem_beta = ReceivingModem(device=device_beta)
9
10# Configure the modem's waveform
11waveform_configuration = {
12 'symbol_rate': 1e8,
13 'num_preamble_symbols': 10,
14 'num_data_symbols': 100,
15}
16modem_alpha.waveform = RootRaisedCosineWaveform(**waveform_configuration)
17modem_beta.waveform = RootRaisedCosineWaveform(**waveform_configuration)
18
19simulation.add_evaluator(ConstellationEVM(modem_alpha, modem_beta))
20simulation.new_dimension('noise_level', dB(0, 2, 4, 8, 10, 12, 14, 16, 18, 20), device_beta)
21simulation.num_samples = 1000
22result = simulation.run()
- class ConstellationEVM(transmitting_modem, receiving_modem, plot_surface=True)[source]¶
Bases:
CommunicationEvaluator
Evaluate the error vector magnitude (EVM) of a constellation diagram.
- Parameters:
transmitting_modem (TransmittingModem) – Modem transmitting information.
receiving_modem (ReceivingModem) – Modem receiving information.
plot_surface (bool, optional) – Plot the surface of the evaluation result in two-dimensional grids. Defaults to True.
- evaluate()[source]¶
Evaluate the state of an investigated object.
Implements the process of extracting an arbitrary performance indicator, represented by the returned
Artifact
\(X_m\).Returns: Artifact \(X_m\) resulting from the evaluation.
- Return type:
- class EVMArtifact(artifact)[source]¶
Bases:
ArtifactTemplate
[float
]Artifact of a error vector magnitude (EVM) evaluation between two modems exchanging information.
- Parameters:
artifact (AT) – Artifact value.
- class EVMEvaluation(transmitted_symbols, received_symbols)[source]¶
Bases:
EvaluationTemplate
[float
,PlotVisualization
]- Parameters:
transmitted_symbols (np.ndarray) – Originally transmitted communication symbols.
received_symbols (np.ndarray) – Received communication symbols.