Measurement

SCPI Command:

CONFigure:VSE:MEASurement<Instance>:CREPetition
CONFigure:VSE:MEASurement<Instance>:SCOunt
CONFigure:VSE:MEASurement<Instance>:REPetition
CONFigure:VSE:MEASurement<Instance>:SCONdition
CONFigure:VSE:MEASurement<Instance>:RCOupling
CONFigure:VSE:MEASurement<Instance>:TOUT
CONFigure:VSE:MEASurement<Instance>:STANdard
class MeasurementCls[source]

Measurement commands group definition. 67 total commands, 10 Subgroups, 7 group commands

get_crepetition() bool[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:CREPetition
value: bool = driver.configure.vse.measurement.get_crepetition()

Enables or disables the automatic configuration of the repetition mode. With enabled automatic configuration, the repetition mode of all measurements is set to ‘Continuous’ each time the instrument switches from remote operation to manual operation.

return:

continuous_repetition: No help available

get_rcoupling() bool[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:RCOupling
value: bool = driver.configure.vse.measurement.get_rcoupling()

Couples the repetition mode (single shot or continuous) of all measurements.

return:

repetition_coupling: OFF | ON

get_repetition() Repeat[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:REPetition
value: enums.Repeat = driver.configure.vse.measurement.get_repetition()

Selects whether the measurement is repeated continuously or not.

return:

repetition: SINGleshot | CONTinuous SINGleshot Single-shot measurement, stopped after the statistic count CONTinuous Continuous measurement, running until explicitly terminated

get_scondition() StopCondition[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:SCONdition
value: enums.StopCondition = driver.configure.vse.measurement.get_scondition()

No command help available

return:

stop_condition: No help available

get_scount() int[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:SCOunt
value: int = driver.configure.vse.measurement.get_scount()

Specifies the number of measurement intervals per measurement cycle. One measurement interval delivers a single ‘Current’ value per result.

return:

statistic_count: Range: 1 to 1000

get_standard() Standard[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:STANdard
value: enums.Standard = driver.configure.vse.measurement.get_standard()

Selects the digital standard of the measured signal.

return:

standard: DMR | DPMR | NXDN | P25 | TETRa | LTE | SPECtrum | CUSTom

get_timeout() float[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:TOUT
value: float = driver.configure.vse.measurement.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 via the graphical user interface. The timer is reset after the first measurement cycle. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped and the reliability indicator is set to 1. 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:

tcd_timeout: No help available

set_crepetition(continuous_repetition: bool) None[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:CREPetition
driver.configure.vse.measurement.set_crepetition(continuous_repetition = False)

Enables or disables the automatic configuration of the repetition mode. With enabled automatic configuration, the repetition mode of all measurements is set to ‘Continuous’ each time the instrument switches from remote operation to manual operation.

param continuous_repetition:

OFF | ON

set_rcoupling(repetition_coupling: bool) None[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:RCOupling
driver.configure.vse.measurement.set_rcoupling(repetition_coupling = False)

Couples the repetition mode (single shot or continuous) of all measurements.

param repetition_coupling:

OFF | ON

set_repetition(repetition: Repeat) None[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:REPetition
driver.configure.vse.measurement.set_repetition(repetition = enums.Repeat.CONTinuous)

Selects whether the measurement is repeated continuously or not.

param repetition:

SINGleshot | CONTinuous SINGleshot Single-shot measurement, stopped after the statistic count CONTinuous Continuous measurement, running until explicitly terminated

set_scondition(stop_condition: StopCondition) None[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:SCONdition
driver.configure.vse.measurement.set_scondition(stop_condition = enums.StopCondition.NONE)

No command help available

param stop_condition:

No help available

set_scount(statistic_count: int) None[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:SCOunt
driver.configure.vse.measurement.set_scount(statistic_count = 1)

Specifies the number of measurement intervals per measurement cycle. One measurement interval delivers a single ‘Current’ value per result.

param statistic_count:

Range: 1 to 1000

set_standard(standard: Standard) None[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:STANdard
driver.configure.vse.measurement.set_standard(standard = enums.Standard.CUSTom)

Selects the digital standard of the measured signal.

param standard:

DMR | DPMR | NXDN | P25 | TETRa | LTE | SPECtrum | CUSTom

set_timeout(tcd_timeout: float) None[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:TOUT
driver.configure.vse.measurement.set_timeout(tcd_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 via the graphical user interface. The timer is reset after the first measurement cycle. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped and the reliability indicator is set to 1. 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 tcd_timeout:

No help available

Cloning the Group

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

Subgroups