Multiplier

SCPI Command :

[SOURce<HW>]:FREQuency:MULTiplier
class MultiplierCls[source]

Multiplier commands group definition. 31 total commands, 1 Subgroups, 1 group commands

get_value() float[source]
# SCPI: [SOURce<HW>]:FREQuency:MULTiplier
value: float = driver.source.frequency.multiplier.get_value()

Sets the multiplication factor NFREQ:MULT of a subsequent downstream instrument. The parameters offset fFREQ:OFFSer and multiplier NFREQ:MULT affect the frequency value set with the command [:SOURce<hw>]:FREQuency[:CW|FIXed]. The query [:SOURce<hw>]:FREQuency[:CW|FIXed] returns the value corresponding to the formula: fFREQ = fRFout * NFREQ:MULT + fFREQ:OFFSer See ‘RF frequency and level display with a downstream instrument’.

return:

multiplier: float Range: -10000 to 10000

set_value(multiplier: float) None[source]
# SCPI: [SOURce<HW>]:FREQuency:MULTiplier
driver.source.frequency.multiplier.set_value(multiplier = 1.0)

Sets the multiplication factor NFREQ:MULT of a subsequent downstream instrument. The parameters offset fFREQ:OFFSer and multiplier NFREQ:MULT affect the frequency value set with the command [:SOURce<hw>]:FREQuency[:CW|FIXed]. The query [:SOURce<hw>]:FREQuency[:CW|FIXed] returns the value corresponding to the formula: fFREQ = fRFout * NFREQ:MULT + fFREQ:OFFSer See ‘RF frequency and level display with a downstream instrument’.

param multiplier:

float Range: -10000 to 10000

Cloning the Group

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

Subgroups