Carrier

SCPI Commands

CONFigure:EVDO:MEASurement<Instance>:MEValuation:CARRier:SETTing
CONFigure:EVDO:MEASurement<Instance>:MEValuation:CARRier:ENABle
CONFigure:EVDO:MEASurement<Instance>:MEValuation:CARRier:SELect
CONFigure:EVDO:MEASurement<Instance>:MEValuation:CARRier:FOFFset
CONFigure:EVDO:MEASurement<Instance>:MEValuation:CARRier:FREQuency
CONFigure:EVDO:MEASurement<Instance>:MEValuation:CARRier:WBFilter
class Carrier[source]

Carrier commands group definition. 6 total commands, 0 Sub-groups, 6 group commands

get_enable()bool[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:ENABle
value: bool = driver.configure.multiEval.carrier.get_enable()

Defines whether a carrier is measured (ON) or not (OFF) . The related carrier has to be pre-set using the method RsCmwEvdoMeas.Configure.MultiEval.Carrier.setting command. All carriers can be queried, but carrier 0 cannot be set (fix set to ON) .

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:EVDO:SIGN<i>:NETWork:PILot:AN:ACTive

  • CONFigure:EVDO:SIGN<i>:NETWork:PILot:AT:ASSigned

return

cenable: OFF | ON

get_foffset()float[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:FOFFset
value: float = driver.configure.multiEval.carrier.get_foffset()

Gets/sets the frequency offset of a selected carrier relative to carrier 0. The related carrier has to be pre-set using the method RsCmwEvdoMeas.Configure.MultiEval.Carrier.setting command. All carriers can be queried, but carrier 0 cannot be set. This command is relevant only for standalone mode. While the combined signal path scenario is active, the command for carrier frequency offset is not used.

return

cf_offset: numeric The offset relative to carrier 0. The maximum distance between carriers is restricted to 8 MHz. Range: - 8 MHz to + 8 MHz, Unit: Hz

get_frequency()float[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:FREQuency
value: float = driver.configure.multiEval.carrier.get_frequency()

Gets/sets the frequency of a selected carrier. The related carrier has to be pre-set using the method RsCmwEvdoMeas. Configure.MultiEval.Carrier.setting command. All carriers can be queried, but only carrier 0 can be set. The frequencies of the other carriers are set implicitly via method RsCmwEvdoMeas.Configure.MultiEval.Carrier.foffset.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:EVDO:SIGN<i>:CARRier:CHANnel or

  • CONFigure:EVDO:SIGN<i>:CARRier:RLFRequency

The supported frequency range depends on the instrument model and the available options. The supported range can be smaller than stated here. Refer to the preface of your model-specific base unit manual.

return

cfrequency: numeric Range: 100 MHz to 6 GHz, Unit: Hz

get_select()int[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:SELect
value: int = driver.configure.multiEval.carrier.get_select()


    INTRO_CMD_HELP: Defines the selected carrier, also displayed at the GUI. The GUI displays the results for this carrier (if the carrier is enabled) . Results retrieved via remote command and the following remote commands are also related to this carrier:

    - method RsCmwEvdoMeas.Configure.MultiEval.drc
    - method RsCmwEvdoMeas.Configure.MultiEval.data
    - method RsCmwEvdoMeas.Configure.MultiEval.apilot
    - method RsCmwEvdoMeas.Configure.MultiEval.ackDsc
    - method RsCmwEvdoMeas.Configure.MultiEval.dmodulation
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Foffsets.lower
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Foffsets.upper
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Extended.Foffsets.lower
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Extended.Foffsets.upper
    - CONFigure:EVDO:MEAS<i>:MEValuation:LIMit:ACP
    - CONFigure:EVDO:MEAS<i>:MEValuation:LIMit:ACP
    - CONFigure:EVDO:MEAS<i>:MEValuation:LIMit:ACP:EXTended
    - CONFigure:EVDO:MEAS<i>:MEValuation:LIMit:ACP:EXTended
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Rbw.lower
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Rbw.upper
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Extended.Rbw.lower
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Extended.Rbw.upper

    :return: selected_carrier: integer Range: 0 to 2
get_setting()int[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:SETTing
value: int = driver.configure.multiEval.carrier.get_setting()


    INTRO_CMD_HELP: Selects a carrier for the following carrier settings:

    - method RsCmwEvdoMeas.Configure.MultiEval.Carrier.enable
    - method RsCmwEvdoMeas.Configure.MultiEval.Carrier.foffset
    - method RsCmwEvdoMeas.Configure.MultiEval.Carrier.frequency
    INTRO_CMD_HELP: For the combined signal path scenario, use:

    - CONFigure:EVDO:SIGN<i>:CARRier:SETTing or
    - CONFigure:EVDO:SIGN<i>:PILot:SETTing

    :return: set_carrier: numeric Range: 0 to 2
get_wb_filter()RsCmwEvdoMeas.enums.WbFilter[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:WBFilter
value: enums.WbFilter = driver.configure.multiEval.carrier.get_wb_filter()

Selects the bandwidth of the wideband filter, used to measure the ‘AT Power (wideband) ‘ of a single-carrier configuration. For a multi-carrier configuration, the bandwidth can only be queried (equals 16 MHz) .

return

wb_filter: F8M0 | F16M0 F8M0: 8 MHz filter bandwidth F16M0: 16 MHz filter bandwidth

set_enable(cenable: bool)None[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:ENABle
driver.configure.multiEval.carrier.set_enable(cenable = False)

Defines whether a carrier is measured (ON) or not (OFF) . The related carrier has to be pre-set using the method RsCmwEvdoMeas.Configure.MultiEval.Carrier.setting command. All carriers can be queried, but carrier 0 cannot be set (fix set to ON) .

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:EVDO:SIGN<i>:NETWork:PILot:AN:ACTive

  • CONFigure:EVDO:SIGN<i>:NETWork:PILot:AT:ASSigned

param cenable

OFF | ON

set_foffset(cf_offset: float)None[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:FOFFset
driver.configure.multiEval.carrier.set_foffset(cf_offset = 1.0)

Gets/sets the frequency offset of a selected carrier relative to carrier 0. The related carrier has to be pre-set using the method RsCmwEvdoMeas.Configure.MultiEval.Carrier.setting command. All carriers can be queried, but carrier 0 cannot be set. This command is relevant only for standalone mode. While the combined signal path scenario is active, the command for carrier frequency offset is not used.

param cf_offset

numeric The offset relative to carrier 0. The maximum distance between carriers is restricted to 8 MHz. Range: - 8 MHz to + 8 MHz, Unit: Hz

set_frequency(cfrequency: float)None[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:FREQuency
driver.configure.multiEval.carrier.set_frequency(cfrequency = 1.0)

Gets/sets the frequency of a selected carrier. The related carrier has to be pre-set using the method RsCmwEvdoMeas. Configure.MultiEval.Carrier.setting command. All carriers can be queried, but only carrier 0 can be set. The frequencies of the other carriers are set implicitly via method RsCmwEvdoMeas.Configure.MultiEval.Carrier.foffset.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:EVDO:SIGN<i>:CARRier:CHANnel or

  • CONFigure:EVDO:SIGN<i>:CARRier:RLFRequency

The supported frequency range depends on the instrument model and the available options. The supported range can be smaller than stated here. Refer to the preface of your model-specific base unit manual.

param cfrequency

numeric Range: 100 MHz to 6 GHz, Unit: Hz

set_select(selected_carrier: int)None[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:SELect
driver.configure.multiEval.carrier.set_select(selected_carrier = 1)


    INTRO_CMD_HELP: Defines the selected carrier, also displayed at the GUI. The GUI displays the results for this carrier (if the carrier is enabled) . Results retrieved via remote command and the following remote commands are also related to this carrier:

    - method RsCmwEvdoMeas.Configure.MultiEval.drc
    - method RsCmwEvdoMeas.Configure.MultiEval.data
    - method RsCmwEvdoMeas.Configure.MultiEval.apilot
    - method RsCmwEvdoMeas.Configure.MultiEval.ackDsc
    - method RsCmwEvdoMeas.Configure.MultiEval.dmodulation
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Foffsets.lower
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Foffsets.upper
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Extended.Foffsets.lower
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Extended.Foffsets.upper
    - CONFigure:EVDO:MEAS<i>:MEValuation:LIMit:ACP
    - CONFigure:EVDO:MEAS<i>:MEValuation:LIMit:ACP
    - CONFigure:EVDO:MEAS<i>:MEValuation:LIMit:ACP:EXTended
    - CONFigure:EVDO:MEAS<i>:MEValuation:LIMit:ACP:EXTended
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Rbw.lower
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Rbw.upper
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Extended.Rbw.lower
    - method RsCmwEvdoMeas.Configure.MultiEval.Acp.Extended.Rbw.upper

    :param selected_carrier: integer Range: 0 to 2
set_setting(set_carrier: int)None[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:SETTing
driver.configure.multiEval.carrier.set_setting(set_carrier = 1)


    INTRO_CMD_HELP: Selects a carrier for the following carrier settings:

    - method RsCmwEvdoMeas.Configure.MultiEval.Carrier.enable
    - method RsCmwEvdoMeas.Configure.MultiEval.Carrier.foffset
    - method RsCmwEvdoMeas.Configure.MultiEval.Carrier.frequency
    INTRO_CMD_HELP: For the combined signal path scenario, use:

    - CONFigure:EVDO:SIGN<i>:CARRier:SETTing or
    - CONFigure:EVDO:SIGN<i>:PILot:SETTing

    :param set_carrier: numeric Range: 0 to 2
set_wb_filter(wb_filter: RsCmwEvdoMeas.enums.WbFilter)None[source]
# SCPI: CONFigure:EVDO:MEASurement<instance>:MEValuation:CARRier:WBFilter
driver.configure.multiEval.carrier.set_wb_filter(wb_filter = enums.WbFilter.F16M0)

Selects the bandwidth of the wideband filter, used to measure the ‘AT Power (wideband) ‘ of a single-carrier configuration. For a multi-carrier configuration, the bandwidth can only be queried (equals 16 MHz) .

param wb_filter

F8M0 | F16M0 F8M0: 8 MHz filter bandwidth F16M0: 16 MHz filter bandwidth