Srs

SCPI Commands :

CONFigure:NRSub:MEASurement<Instance>:SRS:TOUT
CONFigure:NRSub:MEASurement<Instance>:SRS:REPetition
CONFigure:NRSub:MEASurement<Instance>:SRS:SCONdition
CONFigure:NRSub:MEASurement<Instance>:SRS:MOEXception
CONFigure:NRSub:MEASurement<Instance>:SRS:SEQuence
CONFigure:NRSub:MEASurement<Instance>:SRS:SPOSition
CONFigure:NRSub:MEASurement<Instance>:SRS:NOSYmbols
CONFigure:NRSub:MEASurement<Instance>:SRS:PERiodicity
CONFigure:NRSub:MEASurement<Instance>:SRS:NOSubframes
class SrsCls[source]

Srs commands group definition. 30 total commands, 8 Subgroups, 9 group commands

get_mo_exception() bool[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:MOEXception
value: bool = driver.configure.nrSubMeas.srs.get_mo_exception()

Specifies whether measurement results that the CMP180 identifies as faulty or inaccurate are rejected.

return:

meas_on_exception: OFF: Faulty results are rejected. ON: Results are never rejected.

get_no_sub_frames() int[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:NOSubframes
value: int = driver.configure.nrSubMeas.srs.get_no_sub_frames()

Configures the number of subframes captured for the power vs symbol result diagram.

return:

number_subframes: No help available

get_no_symbols() NumberSymbols[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:NOSYmbols
value: enums.NumberSymbols = driver.configure.nrSubMeas.srs.get_no_symbols()

No command help available

return:

number_symbols: No help available

get_periodicity() SrsPeriodicity[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:PERiodicity
value: enums.SrsPeriodicity = driver.configure.nrSubMeas.srs.get_periodicity()

Configures the periodicity of the SRS transmissions in slots.

return:

periodicity: No help available

get_repetition() Repeat[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:REPetition
value: enums.Repeat = driver.configure.nrSubMeas.srs.get_repetition()

Specifies the repetition mode of the measurement. The repetition mode specifies whether the measurement is stopped after a single shot or repeated continuously. Use CONFigure:..:MEAS<i>:…:SCOunt to determine the number of measurement intervals per single shot.

return:

repetition: SINGleshot: Single-shot measurement CONTinuous: Continuous measurement

get_scondition() StopCondition[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:SCONdition
value: enums.StopCondition = driver.configure.nrSubMeas.srs.get_scondition()

Qualifies whether the measurement is stopped after a failed limit check or continued. SLFail means that the measurement is stopped and reaches the RDY state when one of the results exceeds the limits.

return:

stop_condition: NONE: Continue measurement irrespective of the limit check. SLFail: Stop measurement on limit failure.

get_sequence() int[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:SEQuence
value: int = driver.configure.nrSubMeas.srs.get_sequence()

No command help available

return:

sequence_id: No help available

get_sposition() int[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:SPOSition
value: int = driver.configure.nrSubMeas.srs.get_sposition()

No command help available

return:

start_position: No help available

get_timeout() float[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:TOUT
value: float = driver.configure.nrSubMeas.srs.get_timeout()

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually. When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

return:

timeout: No help available

set_mo_exception(meas_on_exception: bool) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:MOEXception
driver.configure.nrSubMeas.srs.set_mo_exception(meas_on_exception = False)

Specifies whether measurement results that the CMP180 identifies as faulty or inaccurate are rejected.

param meas_on_exception:

OFF: Faulty results are rejected. ON: Results are never rejected.

set_no_sub_frames(number_subframes: int) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:NOSubframes
driver.configure.nrSubMeas.srs.set_no_sub_frames(number_subframes = 1)

Configures the number of subframes captured for the power vs symbol result diagram.

param number_subframes:

No help available

set_no_symbols(number_symbols: NumberSymbols) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:NOSYmbols
driver.configure.nrSubMeas.srs.set_no_symbols(number_symbols = enums.NumberSymbols.N1)

No command help available

param number_symbols:

No help available

set_periodicity(periodicity: SrsPeriodicity) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:PERiodicity
driver.configure.nrSubMeas.srs.set_periodicity(periodicity = enums.SrsPeriodicity.SL1)

Configures the periodicity of the SRS transmissions in slots.

param periodicity:

No help available

set_repetition(repetition: Repeat) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:REPetition
driver.configure.nrSubMeas.srs.set_repetition(repetition = enums.Repeat.CONTinuous)

Specifies the repetition mode of the measurement. The repetition mode specifies whether the measurement is stopped after a single shot or repeated continuously. Use CONFigure:..:MEAS<i>:…:SCOunt to determine the number of measurement intervals per single shot.

param repetition:

SINGleshot: Single-shot measurement CONTinuous: Continuous measurement

set_scondition(stop_condition: StopCondition) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:SCONdition
driver.configure.nrSubMeas.srs.set_scondition(stop_condition = enums.StopCondition.NONE)

Qualifies whether the measurement is stopped after a failed limit check or continued. SLFail means that the measurement is stopped and reaches the RDY state when one of the results exceeds the limits.

param stop_condition:

NONE: Continue measurement irrespective of the limit check. SLFail: Stop measurement on limit failure.

set_sequence(sequence_id: int) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:SEQuence
driver.configure.nrSubMeas.srs.set_sequence(sequence_id = 1)

No command help available

param sequence_id:

No help available

set_sposition(start_position: int) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:SPOSition
driver.configure.nrSubMeas.srs.set_sposition(start_position = 1)

No command help available

param start_position:

No help available

set_timeout(timeout: float) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:SRS:TOUT
driver.configure.nrSubMeas.srs.set_timeout(timeout = 1.0)

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually. When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

param timeout:

No help available

Cloning the Group

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

Subgroups