Pstrength

SCPI Commands

INITiate:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
STOP:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
ABORt:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
READ:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
FETCh:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
class Pstrength[source]

Pstrength commands group definition. 7 total commands, 1 Sub-groups, 5 group commands

abort()None[source]
# SCPI: ABORt:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
driver.rxQuality.pstrength.abort()


    INTRO_CMD_HELP: Starts, stops, or aborts the measurement:

    - INITiate... starts or restarts the measurement. The measurement enters the 'RUN' state.
    - STOP... halts the measurement immediately. The measurement enters the 'RDY' state. Measurement results are kept. The resources remain allocated to the measurement.
    - ABORt... halts the measurement immediately. The measurement enters the 'OFF' state. All measurement values are set to NAV. Allocated resources are released.

Use FETCh…STATe? to query the current measurement state.

abort_with_opc()None[source]
# SCPI: ABORt:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
driver.rxQuality.pstrength.abort_with_opc()


    INTRO_CMD_HELP: Starts, stops, or aborts the measurement:

    - INITiate... starts or restarts the measurement. The measurement enters the 'RUN' state.
    - STOP... halts the measurement immediately. The measurement enters the 'RDY' state. Measurement results are kept. The resources remain allocated to the measurement.
    - ABORt... halts the measurement immediately. The measurement enters the 'OFF' state. All measurement values are set to NAV. Allocated resources are released.

Use FETCh…STATe? to query the current measurement state.

Same as abort, but waits for the operation to complete before continuing further. Use the RsCmwCdma2kSig.utilities.opc_timeout_set() to set the timeout value.

fetch()float[source]
# SCPI: FETCh:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
value: float = driver.rxQuality.pstrength.fetch()

Returns the pilot strength at the MS antenna, as a result of the pilot strength measurement…

Use RsCmwCdma2kSig.reliability.last_value to read the updated reliability indicator.

return

pilot_strength: The pilot power relative to the total power. Unit: dB

initiate()None[source]
# SCPI: INITiate:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
driver.rxQuality.pstrength.initiate()


    INTRO_CMD_HELP: Starts, stops, or aborts the measurement:

    - INITiate... starts or restarts the measurement. The measurement enters the 'RUN' state.
    - STOP... halts the measurement immediately. The measurement enters the 'RDY' state. Measurement results are kept. The resources remain allocated to the measurement.
    - ABORt... halts the measurement immediately. The measurement enters the 'OFF' state. All measurement values are set to NAV. Allocated resources are released.

Use FETCh…STATe? to query the current measurement state.

initiate_with_opc()None[source]
# SCPI: INITiate:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
driver.rxQuality.pstrength.initiate_with_opc()


    INTRO_CMD_HELP: Starts, stops, or aborts the measurement:

    - INITiate... starts or restarts the measurement. The measurement enters the 'RUN' state.
    - STOP... halts the measurement immediately. The measurement enters the 'RDY' state. Measurement results are kept. The resources remain allocated to the measurement.
    - ABORt... halts the measurement immediately. The measurement enters the 'OFF' state. All measurement values are set to NAV. Allocated resources are released.

Use FETCh…STATe? to query the current measurement state.

Same as initiate, but waits for the operation to complete before continuing further. Use the RsCmwCdma2kSig.utilities.opc_timeout_set() to set the timeout value.

read()float[source]
# SCPI: READ:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
value: float = driver.rxQuality.pstrength.read()

Returns the pilot strength at the MS antenna, as a result of the pilot strength measurement…

Use RsCmwCdma2kSig.reliability.last_value to read the updated reliability indicator.

return

pilot_strength: The pilot power relative to the total power. Unit: dB

stop()None[source]
# SCPI: STOP:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
driver.rxQuality.pstrength.stop()


    INTRO_CMD_HELP: Starts, stops, or aborts the measurement:

    - INITiate... starts or restarts the measurement. The measurement enters the 'RUN' state.
    - STOP... halts the measurement immediately. The measurement enters the 'RDY' state. Measurement results are kept. The resources remain allocated to the measurement.
    - ABORt... halts the measurement immediately. The measurement enters the 'OFF' state. All measurement values are set to NAV. Allocated resources are released.

Use FETCh…STATe? to query the current measurement state.

stop_with_opc()None[source]
# SCPI: STOP:CDMA:SIGNaling<Instance>:RXQuality:PSTRength
driver.rxQuality.pstrength.stop_with_opc()


    INTRO_CMD_HELP: Starts, stops, or aborts the measurement:

    - INITiate... starts or restarts the measurement. The measurement enters the 'RUN' state.
    - STOP... halts the measurement immediately. The measurement enters the 'RDY' state. Measurement results are kept. The resources remain allocated to the measurement.
    - ABORt... halts the measurement immediately. The measurement enters the 'OFF' state. All measurement values are set to NAV. Allocated resources are released.

Use FETCh…STATe? to query the current measurement state.

Same as stop, but waits for the operation to complete before continuing further. Use the RsCmwCdma2kSig.utilities.opc_timeout_set() to set the timeout value.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.rxQuality.pstrength.clone()

Subgroups