Fm

SCPI Commands :

[SOURce<HW>]:BB:GENeral:FM:DEViation
[SOURce<HW>]:BB:GENeral:FM:FREQuency
[SOURce<HW>]:BB:GENeral:FM:PERiod
[SOURce<HW>]:BB:GENeral:FM:SHAPe
[SOURce<HW>]:BB:GENeral:FM:[STATe]
class FmCls[source]

Fm commands group definition. 5 total commands, 0 Subgroups, 5 group commands

get_deviation() float[source]
# SCPI: [SOURce<HW>]:BB:GENeral:FM:DEViation
value: float = driver.source.bb.general.fm.get_deviation()

Sets the frequency modulation deviation in Hz.

return:

fm_deviation: float Range: 0 to 4E6

get_frequency() float[source]
# SCPI: [SOURce<HW>]:BB:GENeral:FM:FREQuency
value: float = driver.source.bb.general.fm.get_frequency()

Sets the frequency of the modulation signal.

return:

freq_mod_freq: float Range: 0.1 to 100E3

get_period() float[source]
# SCPI: [SOURce<HW>]:BB:GENeral:FM:PERiod
value: float = driver.source.bb.general.fm.get_period()

Queries the period of the modulation signal.

return:

fm_per: float Range: 100E-9 to 100

get_shape() BasebandModShape[source]
# SCPI: [SOURce<HW>]:BB:GENeral:FM:SHAPe
value: enums.BasebandModShape = driver.source.bb.general.fm.get_shape()

Queries the shape of the modulation signal.

return:

fm_shape: SINE

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:GENeral:FM:[STATe]
value: bool = driver.source.bb.general.fm.get_state()

Activates the standard and deactivates all the other digital standards and digital modulation modes in the same path.

return:

fm_mod_state: 1| ON| 0| OFF

set_deviation(fm_deviation: float) None[source]
# SCPI: [SOURce<HW>]:BB:GENeral:FM:DEViation
driver.source.bb.general.fm.set_deviation(fm_deviation = 1.0)

Sets the frequency modulation deviation in Hz.

param fm_deviation:

float Range: 0 to 4E6

set_frequency(freq_mod_freq: float) None[source]
# SCPI: [SOURce<HW>]:BB:GENeral:FM:FREQuency
driver.source.bb.general.fm.set_frequency(freq_mod_freq = 1.0)

Sets the frequency of the modulation signal.

param freq_mod_freq:

float Range: 0.1 to 100E3

set_period(fm_per: float) None[source]
# SCPI: [SOURce<HW>]:BB:GENeral:FM:PERiod
driver.source.bb.general.fm.set_period(fm_per = 1.0)

Queries the period of the modulation signal.

param fm_per:

float Range: 100E-9 to 100

set_shape(fm_shape: BasebandModShape) None[source]
# SCPI: [SOURce<HW>]:BB:GENeral:FM:SHAPe
driver.source.bb.general.fm.set_shape(fm_shape = enums.BasebandModShape.SINE)

Queries the shape of the modulation signal.

param fm_shape:

SINE

set_state(fm_mod_state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:GENeral:FM:[STATe]
driver.source.bb.general.fm.set_state(fm_mod_state = False)

Activates the standard and deactivates all the other digital standards and digital modulation modes in the same path.

param fm_mod_state:

1| ON| 0| OFF