Modulation
SCPI Commands :
CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:TDLoffset
CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:TPERiod
CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:DAReceiver
- Commands in total: 10Subgroups: 3Direct child commands: 3
- get_da_receiver() bool[source]
# CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:DAReceiver value: bool = driver.configure.nrSubMeas.multiEval.modulation.get_da_receiver()
Enables the dual antenna receiver for measurements with two antennas. This setting selects how the signals of the two antennas are processed for the calculation of modulation results provided per layer / antenna.
- Returns:
enable: OFF | ON
OFF: The results are derived per antenna.
ON: The results are derived per layer from the combination of both antenna signals.
- get_tdl_offset() float[source]
# CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:TDLoffset value: float = driver.configure.nrSubMeas.multiEval.modulation.get_tdl_offset()
Specifies the offset of the DC subcarrier from the center frequency (number of subcarriers) .
- Returns:
offset: numeric
- get_tperiod() Tperiod[source]
# CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:TPERiod value: enums.Tperiod = driver.configure.nrSubMeas.multiEval.modulation.get_tperiod()
Configures the transient period capability to be considered for EVM measurements.
- Returns:
period: OFF: default capability (long transient period) US2 | US4 | US7: short transient period of 2 µs, 4 µs or 7 µs.
- set_da_receiver(enable: bool) None[source]
# CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:DAReceiver driver.configure.nrSubMeas.multiEval.modulation.set_da_receiver(enable = False)
Enables the dual antenna receiver for measurements with two antennas. This setting selects how the signals of the two antennas are processed for the calculation of modulation results provided per layer / antenna.
- Parameters:
enable –
OFF | ON
OFF: The results are derived per antenna.
ON: The results are derived per layer from the combination of both antenna signals.
- set_tdl_offset(offset: float) None[source]
# CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:TDLoffset driver.configure.nrSubMeas.multiEval.modulation.set_tdl_offset(offset = 1.0)
Specifies the offset of the DC subcarrier from the center frequency (number of subcarriers) .
- Parameters:
offset – numeric
- set_tperiod(period: Tperiod) None[source]
# CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:TPERiod driver.configure.nrSubMeas.multiEval.modulation.set_tperiod(period = enums.Tperiod.OFF)
Configures the transient period capability to be considered for EVM measurements.
- Parameters:
period – OFF: default capability (long transient period) US2 | US4 | US7: short transient period of 2 µs, 4 µs or 7 µs.
Cloning the Group
# Create a copy of the original group, that exists independently
modulation_copy = driver.configure.nrSubMeas.multiEval.modulation.clone()
Subgroups