Modulation

SCPI Commands :

CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:TDLoffset
CONFigure:NRSub:MEASurement<Instance>:MEValuation:MODulation:DAReceiver
class ModulationCls[source]

Modulation commands group definition. 9 total commands, 3 Subgroups, 2 group commands

get_da_receiver() bool[source]
# SCPI: 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.

return:

enable: - 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]
# SCPI: 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) .

return:

offset: No help available

set_da_receiver(enable: bool) None[source]
# SCPI: 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.

param enable:
  • 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]
# SCPI: 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) .

param offset:

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.nrSubMeas.multiEval.modulation.clone()

Subgroups