Frequency

SCPI Command :

[SOURce]:FREQuency:OFFSet
class FrequencyCls[source]

Frequency commands group definition. 9 total commands, 2 Subgroups, 1 group commands

get_offset() float[source]
# SCPI: [SOURce]:FREQuency:OFFSet
value: float = driver.source.frequency.get_offset()

Sets a frequency offset, for example include the frequency shift of downstream instrument. Note: Enabled frequency offset affects the result of the query SOURce:FREQuency:CW? The query returns the frequency, including frequency offset.

return:

offset: float Range: -3e9 to 3e9

set_offset(offset: float) None[source]
# SCPI: [SOURce]:FREQuency:OFFSet
driver.source.frequency.set_offset(offset = 1.0)

Sets a frequency offset, for example include the frequency shift of downstream instrument. Note: Enabled frequency offset affects the result of the query SOURce:FREQuency:CW? The query returns the frequency, including frequency offset.

param offset:

float Range: -3e9 to 3e9

Cloning the Group

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

Subgroups