Continuous

SCPI Commands :

[SOURce<HW>]:FREQuency:PHASe:CONTinuous:HIGH
[SOURce<HW>]:FREQuency:PHASe:CONTinuous:LOW
[SOURce<HW>]:FREQuency:PHASe:CONTinuous:MODE
[SOURce<HW>]:FREQuency:PHASe:CONTinuous:STATe
class ContinuousCls[source]

Continuous commands group definition. 4 total commands, 0 Subgroups, 4 group commands

get_high() float[source]
# SCPI: [SOURce<HW>]:FREQuency:PHASe:CONTinuous:HIGH
value: float = driver.source.frequency.phase.continuous.get_high()

Queries the maximum frequency of the frequency range for phase continuous settings. The maximum frequency of the frequency range depends on the mode selected with the command [:SOURce<hw>]:FREQuency:PHASe:CONTinuous:MODE.

return:

high: float Range: 1E5 to 6E9, Unit: Hz

get_low() float[source]
# SCPI: [SOURce<HW>]:FREQuency:PHASe:CONTinuous:LOW
value: float = driver.source.frequency.phase.continuous.get_low()

Queries the minimum frequency of the frequency range for phase continuous settings. The minimum frequency of the frequency range depends on the mode selected with the command [:SOURce<hw>]:FREQuency:PHASe:CONTinuous:MODE.

return:

low: float Range: 1E5 to 6E9, Unit: Hz

get_mode() FilterWidth[source]
# SCPI: [SOURce<HW>]:FREQuency:PHASe:CONTinuous:MODE
value: enums.FilterWidth = driver.source.frequency.phase.continuous.get_mode()

Selects the mode that determines the frequency range for the phase continuity. To query the frequency range, use the commands [:SOURce<hw>]:FREQuency:PHASe:CONTinuous:HIGH? and [:SOURce<hw>]:FREQuency:PHASe:CONTinuous:LOW?

return:

mode: NARRow| WIDE NARRow Small frequency range, asymmetrically around the RF frequency. WIDE Large frequency range, symmetrically around the RF frequency.

get_state() bool[source]
# SCPI: [SOURce<HW>]:FREQuency:PHASe:CONTinuous:STATe
value: bool = driver.source.frequency.phase.continuous.get_state()

Activates phase continuity of the RF frequency. The frequency range is limited and varies depending on the set RF frequency. You can query the range with the commands [:SOURce<hw>]:FREQuency:PHASe:CONTinuous:HIGH? and [:SOURce<hw>]:FREQuency:PHASe:CONTinuous:LOW?. Note: Restricted structure of command line. In phase continuous mode, the R&S SMA100B only processes the first command of a command line and ignores further commands if they are on the same line.

return:

state: 1| ON| 0| OFF

set_mode(mode: FilterWidth) None[source]
# SCPI: [SOURce<HW>]:FREQuency:PHASe:CONTinuous:MODE
driver.source.frequency.phase.continuous.set_mode(mode = enums.FilterWidth.NARRow)

Selects the mode that determines the frequency range for the phase continuity. To query the frequency range, use the commands [:SOURce<hw>]:FREQuency:PHASe:CONTinuous:HIGH? and [:SOURce<hw>]:FREQuency:PHASe:CONTinuous:LOW?

param mode:

NARRow| WIDE NARRow Small frequency range, asymmetrically around the RF frequency. WIDE Large frequency range, symmetrically around the RF frequency.

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:FREQuency:PHASe:CONTinuous:STATe
driver.source.frequency.phase.continuous.set_state(state = False)

Activates phase continuity of the RF frequency. The frequency range is limited and varies depending on the set RF frequency. You can query the range with the commands [:SOURce<hw>]:FREQuency:PHASe:CONTinuous:HIGH? and [:SOURce<hw>]:FREQuency:PHASe:CONTinuous:LOW?. Note: Restricted structure of command line. In phase continuous mode, the R&S SMA100B only processes the first command of a command line and ignores further commands if they are on the same line.

param state:

1| ON| 0| OFF