Modulation

SCPI Commands :

CONFigure:NRSub:MEASurement<Instance>:SRS:MODulation:SSYMbol
CONFigure:NRSub:MEASurement<Instance>:SRS:MODulation:EWPosition
Commands in total: 3
Subgroups: 1
Direct child commands: 2
get_ew_position() LowHigh[source]
# CONFigure:NRSub:MEASurement<Instance>:SRS:MODulation:EWPosition
value: enums.LowHigh = driver.configure.nrSubMeas.srs.modulation.get_ew_position()

Specifies the position of the EVM window used for calculation of the trace results.

Returns:

evm_window_pos: LOW | HIGH

get_ssymbol() int[source]
# CONFigure:NRSub:MEASurement<Instance>:SRS:MODulation:SSYMbol
value: int = driver.configure.nrSubMeas.srs.modulation.get_ssymbol()

Selects the OFDM symbol to be evaluated for single-symbol modulation result diagrams. The symbols are labeled 0 to <n>-1, where <n> is the number of SRS symbols in the slot, as defined via method RsCMPX_NrFr1Meas.configure.nrSubMeas.srs.sresource.rmapping.set() .

Returns:

selected_symbol: numeric

set_ew_position(evm_window_pos: LowHigh) None[source]
# CONFigure:NRSub:MEASurement<Instance>:SRS:MODulation:EWPosition
driver.configure.nrSubMeas.srs.modulation.set_ew_position(evm_window_pos = enums.LowHigh.HIGH)

Specifies the position of the EVM window used for calculation of the trace results.

Parameters:

evm_window_pos – LOW | HIGH

set_ssymbol(selected_symbol: int) None[source]
# CONFigure:NRSub:MEASurement<Instance>:SRS:MODulation:SSYMbol
driver.configure.nrSubMeas.srs.modulation.set_ssymbol(selected_symbol = 1)

Selects the OFDM symbol to be evaluated for single-symbol modulation result diagrams. The symbols are labeled 0 to <n>-1, where <n> is the number of SRS symbols in the slot, as defined via method RsCMPX_NrFr1Meas.configure.nrSubMeas.srs.sresource.rmapping.set() .

Parameters:

selected_symbol – numeric

Cloning the Group

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

Subgroups